| 96 | } |
| 97 | |
| 98 | void freeUserStrings() |
| 99 | { |
| 100 | for (auto& entity : rawEntities()) |
| 101 | { |
| 102 | if (entity.baseType == EntityBaseType::null) |
| 103 | { |
| 104 | continue; |
| 105 | } |
| 106 | |
| 107 | StringManager::emptyUserString(entity.name); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | EntityId firstId(EntityListType list) |
| 112 | { |
no test coverage detected