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"; ///Used to mark readonly components for system. "const" can be used insted. enum readonly = "readonly";