bubel-ecs/source/ecs/attributes.d
2018-10-02 15:36:00 +02:00

6 lines
No EOL
223 B
D

module ecs.attributes;
///Used to mark optional components for system.
enum optional = "optional";
///Used to mark absent components for system. Enum 'AbsentComponents' should be used instead of it.
enum absent = "absent";