6 lines
No EOL
223 B
D
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"; |