bubel-ecs/source/ecs/attributes.d
2018-10-01 19:40:24 +02:00

6 lines
No EOL
219 B
D

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