mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
16 lines
315 B
C++
16 lines
315 B
C++
#pragma once
|
|
#include "core/util/SystemInterfaceList.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);
|
|
}; |