Files

11 lines
220 B
C++
Raw Permalink Normal View History

2023-10-01 02:28:13 +08:00
#include "global.h"
namespace global {
bool Exit;
2023-10-02 05:03:37 +08:00
int MaxPlayers;
2023-10-04 06:01:28 +08:00
CGameEntitySystem* EntitySystem;
bool HasTicked;
CGlobalVars* GlobalVars;
float m_flUniversalTime;
float m_flLastTickedTime;
2023-10-20 20:19:22 +08:00
bool IsMetaModInit;
2023-10-01 02:28:13 +08:00
}