| 29 | } |
| 30 | |
| 31 | void RavEngine::Entity::SyncRemovals() |
| 32 | { |
| 33 | Ref<World> world(GetWorld()); |
| 34 | world->RemoveComponentsSpawnedEntity(addBuffer); |
| 35 | removalBuffer.clear(); |
| 36 | } |
| 37 | |
| 38 | RavEngine::Entity::Entity(){ |
| 39 | AddComponent<Transform>(new Transform()); |
nothing calls this directly
no test coverage detected