0x00470039
| 289 | |
| 290 | // 0x00470039 |
| 291 | EntityBase* createEntityVehicle() |
| 292 | { |
| 293 | if (getListCount(EntityListType::null) <= 0) |
| 294 | { |
| 295 | return nullptr; |
| 296 | } |
| 297 | |
| 298 | const auto newId = rawListHeads()[enumValue(EntityListType::null)]; |
| 299 | return createEntity(newId, EntityListType::vehicle); |
| 300 | } |
| 301 | |
| 302 | // 0x0047024A |
| 303 | void freeEntity(EntityBase* const entity) |
no test coverage detected