moved all managers to their own folder

This commit is contained in:
maverickdgg 2022-09-13 15:26:23 +08:00
parent d483916cc5
commit e9241feb69
7 changed files with 35 additions and 1 deletions

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