Constructor
| 38 | |
| 39 | // Constructor |
| 40 | Entity::Entity(uint32 index, uint32 generation) |
| 41 | :id((index & ENTITY_INDEX_MASK) | ((generation & ENTITY_GENERATION_MASK) << ENTITY_INDEX_BITS)) { |
| 42 | |
| 43 | assert(getIndex() == index); |
| 44 | assert(getGeneration() == generation); |
| 45 | } |
nothing calls this directly
no outgoing calls
no test coverage detected