Constructor
| 31 | |
| 32 | // Constructor |
| 33 | EntityManager::EntityManager(MemoryAllocator& allocator) |
| 34 | :mGenerations(allocator), mFreeIndices(allocator) { |
| 35 | |
| 36 | } |
| 37 | |
| 38 | // Create a new entity |
| 39 | Entity EntityManager::createEntity() { |
nothing calls this directly
no outgoing calls
no test coverage detected