| 538 | } |
| 539 | |
| 540 | EntityHandle EntityCommandBuffer::CreateEntityImmediate() |
| 541 | { |
| 542 | auto entity = HandleGenerator->Create(); |
| 543 | auto change = Data.GetOrAddEntityChange(entity); |
| 544 | change->Flags |= EntityChangeFlags::Create | EntityChangeFlags::Immediate; |
| 545 | return entity; |
| 546 | } |
| 547 | |
| 548 | bool EntityCommandBuffer::DestroyEntity(EntityHandle entity) |
| 549 | { |
nothing calls this directly
no test coverage detected