Sp3 209 system manager rework #22

Merged
maverickdgg merged 6 commits from SP3-209-System-Manager-Rework into SP3-5-ECS 2022-09-15 12:14:15 +08:00
7 changed files with 35 additions and 1 deletions
Showing only changes of commit e9241feb69 - Show all commits

View File

@ -16,7 +16,7 @@
namespace SHADE
{
class SHSystemManager;
class SHSystem
{
@ -54,8 +54,42 @@ namespace SHADE
***************************************************************************/
virtual void Exit() = 0;
protected:
SystemID systemID{};
};
class SHTestSystem : public SHSystem
{
public:
SHTestSystem() = default;
~SHTestSystem() = default;
int value{5};
void Init()
{
}
void Run(float dt)
{
}
void Exit()
{
}
};
}
#endif