| 364 | int GetObjectIndex(int objectType, int id); |
| 365 | int GetObjectStatus(int objectType, int objectIndex); |
| 366 | int GetObjectStatus(int objectType, const char* objectName) |
| 367 | { |
| 368 | return this->GetObjectStatus(objectType, this->GetObjectIndex(objectType, objectName)); |
| 369 | } |
| 370 | void SetObjectStatus(int objectType, int objectIndex, int status); |
| 371 | void SetObjectStatus(int objectType, const char* objectName, int status); |
| 372 |
nothing calls this directly
no test coverage detected