9 using SystemType = std::uint8_t;
10 const SystemType MAX_SYSTEMS = UINT8_MAX;
11 const SystemType INVALID_SYSTEM = UINT8_MAX;
15 virtual void update() = 0;
18 SystemType system_type_;
23#define SYSTEM_BODY(T) static Grindstone::ECS::SystemType static_system_type_; \
24 static const char *system_name_; \
25 T(Grindstone::Scene *s) { scene_ = s; system_type_ = Grindstone::ECS::INVALID_SYSTEM; } \
26 static Grindstone::ECS::ISystem* createSystem(Grindstone::Scene *s) { return new T(s); }
27#define SYSTEM_DEFINE(T, Name) Grindstone::ECS::SystemType T::static_system_type_ = 0; const char * T::system_name_ = Name