| 9268 | -------------------------------------------------------------------------------*/ |
| 9269 | |
| 9270 | Sint32 Entity::getINT() |
| 9271 | { |
| 9272 | Stat* entitystats; |
| 9273 | |
| 9274 | if ( (entitystats = this->getStats()) == nullptr ) |
| 9275 | { |
| 9276 | return 0; |
| 9277 | } |
| 9278 | return statGetINT(entitystats, this); |
| 9279 | } |
| 9280 | |
| 9281 | Sint32 statGetINT(Stat* entitystats, Entity* my) |
| 9282 | { |
no test coverage detected