Divide Framework 0.1
A free and open-source 3D Framework under heavy development
Loading...
Searching...
No Matches
ISystem.cpp
Go to the documentation of this file.
1
7
8#include "ISystem.h"
9
10namespace ECS
11{
12
13 ISystem::ISystem(SystemPriority priority, f32 updateInterval_ms) :
14 m_Priority(priority),
15 m_UpdateInterval(updateInterval_ms),
16 m_Enabled(true)
17 {}
18
20 {}
21
22} // namespace ECS
ISystem(SystemPriority priority=NORMAL_SYSTEM_PRIORITY, f32 updateInterval_ms=-1.0f)
Definition: ISystem.cpp:13
virtual ~ISystem()
Definition: ISystem.cpp:19
float_t f32
Definition: Platform.h:59
u16 SystemPriority
Definition: ISystem.h:24