blob: 4cfcfb41ba3227531f9b7a103498b39855267ad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
class global_vars_t {
public:
float m_realtime;
int m_framecount;
float m_absframetime;
private:
float m_absoluteframestarttimestddev;
public:
float m_curtime;
float m_frametime;
int m_maxclients;
int m_tickcount;
float m_interval_per_tick;
float m_interpolation_amount;
int m_sim_ticks;
int m_network_protocol;
private:
char pad00[ 14 ];
};
|