| 26 | static auto& rawListCounts() { return getGameState().entityListCounts; } |
| 27 | |
| 28 | constexpr uint8_t getLinkedListOffset(EntityListType list) |
| 29 | { |
| 30 | return enumValue(list) * static_cast<uint8_t>(sizeof(uint16_t)); |
| 31 | } |
| 32 | |
| 33 | constexpr size_t getLinkedListIndex(uint8_t offset) |
| 34 | { |
no test coverage detected