mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 11:34:14 +01:00
10 lines
193 B
C
10 lines
193 B
C
|
#pragma once
|
||
|
|
||
|
// Pretty sure this class is not used by the game
|
||
|
class CTimeStep
|
||
|
{
|
||
|
public:
|
||
|
static float &ms_fTimeScale;
|
||
|
static float &ms_fFramesPerUpdate;
|
||
|
static float &ms_fTimeStep;
|
||
|
};
|