------------------------------- EcsController::AddEntityChild Add an entity without components to the system, one level below the parent entity
| 65 | // Add an entity without components to the system, one level below the parent entity |
| 66 | // |
| 67 | T_EntityId EcsController::AddEntityChild(T_EntityId const parent) |
| 68 | { |
| 69 | return AddEntityBatched(parent, {}); |
| 70 | } |
| 71 | |
| 72 | //--------------------------------- |
| 73 | // EcsController::AddEntityBatched |
no outgoing calls
no test coverage detected