bubel-ecs/source/ecs/entity.d
2018-09-10 21:48:33 +02:00

20 lines
217 B
D

module ecs.entity;
import ecs.manager;
struct EntityID
{
uint id;
uint id_count;
}
struct Entity
{
EntityID id;
}
struct EntityTemplate
{
ubyte[] entity_data;
EntityManager.EntityInfo* info;
}