mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 13:14:46 +00:00
16 lines
301 B
C
16 lines
301 B
C
|
|
#pragma once
|
||
|
|
#include "componentSystem.h"
|
||
|
|
|
||
|
|
class UpdateSystemInterface : public SystemInterface<UpdateSystemInterface>
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
bool mIsEnabled;
|
||
|
|
};
|
||
|
|
|
||
|
|
class UpdateSystem
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void processTick();
|
||
|
|
static void advanceTime(U32 _tickMS);
|
||
|
|
static void interpolateTick(U32 _deltaMS);
|
||
|
|
};
|