| 84 | } |
| 85 | |
| 86 | void StatCollection::modifyResource(String const& resourceName, float amount) { |
| 87 | m_stats.modifyResourceValue(resourceName, amount); |
| 88 | } |
| 89 | |
| 90 | float StatCollection::giveResource(String const& resourceName, float amount) { |
| 91 | return m_stats.giveResourceValue(resourceName, amount); |
nothing calls this directly
no test coverage detected