1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00

Update CGlobalVarsBase (#260)

This commit is contained in:
zer0.k
2024-06-19 17:49:21 +02:00
committed by GitHub
parent 4b31db7505
commit 67ba01d050
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
//========= Copyright <EFBFBD> 1996-2005, Valve Corporation, All rights reserved. ============// //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
// //
// Purpose: // Purpose:
// //
@ -46,10 +46,6 @@ public:
CGlobalVars(); CGlobalVars();
public: public:
int unknown8;
int unknown9;
// Current map // Current map
string_t mapname; string_t mapname;
string_t startspot; string_t startspot;

View File

@ -80,6 +80,10 @@ public:
// Simulation ticks - does not increase when game is paused // Simulation ticks - does not increase when game is paused
int tickcount; int tickcount;
int unknown8;
int unknown9;
// Non-zero when during movement processing, it's the part after the decimal point of the "when" field in player's subtick moves. // Non-zero when during movement processing, it's the part after the decimal point of the "when" field in player's subtick moves.
float m_flSubtickFraction; float m_flSubtickFraction;
}; };