-license changed to BSD (maybe temporary) -added configurations to dub.json -initial ECS implementation (WIP): -Manager, System, Entity, Component -registering components -registering systems -calling update
11 lines
No EOL
76 B
D
11 lines
No EOL
76 B
D
module ecs.events;
|
|
|
|
struct Event
|
|
{
|
|
uint type;
|
|
}
|
|
|
|
class EventManager
|
|
{
|
|
|
|
} |