bubel-ecs/source/ecs/attributes.d
Mergul 9220a28f7c -fixed issue with ExcludedComponents as enum or alias
-removed way to add excluded component by adding attribiute @excluded (it's very stupid way)
2019-04-06 20:27:28 +00:00

8 lines
No EOL
348 B
D

module ecs.attributes;
///Used to mark optional components for system.
enum optional = "optional";
//Used to mark components excluded from update for system. Enum 'ExcludedComponents' should be used instead of it.
//enum excluded = "excluded";
///Used to mark readonly components for system. "const" can be used insted.
enum readonly = "readonly";