mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-09-19 20:26:10 +08:00
27 lines
520 B
C++
27 lines
520 B
C++
#pragma once
|
|
|
|
class IGlobalVarsBase
|
|
{
|
|
public:
|
|
float realtime;
|
|
int framecount;
|
|
float absoluteframetime;
|
|
float absoluteframestarttimestddev;
|
|
float curtime;
|
|
float frametime;
|
|
int maxClients;
|
|
int tickcount;
|
|
float interval_per_tick;
|
|
float interpolation_amount;
|
|
int simTicksThisFrame;
|
|
int network_protocol;
|
|
void* pSaveData;
|
|
private:
|
|
bool m_bClient;
|
|
public:
|
|
bool m_bRemoteClient;
|
|
private:
|
|
int nTimestampNetworkingBase;
|
|
int nTimestampRandomizeWindow;
|
|
};
|