mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Light structures cleanup
This commit is contained in:
parent
1cf03355a5
commit
d4b576bd49
@ -5,9 +5,6 @@
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//=============================================================================//
|
||||
|
||||
// #include "BaseAnimating.h"
|
||||
|
||||
#ifndef BASE_ANIMATING_OVERLAY_H
|
||||
#define BASE_ANIMATING_OVERLAY_H
|
||||
#ifdef _WIN32
|
||||
|
@ -8,6 +8,7 @@
|
||||
#endif // !CLIENT_DLL
|
||||
|
||||
typedef uint16_t edict_t;
|
||||
#define FL_EDICT_INVALID -1
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Defines the ways that a map can be loaded.
|
||||
@ -33,7 +34,7 @@ public:
|
||||
MapLoadType_t m_eLoadType; // How the current map was loaded.
|
||||
bool m_bMapLoadFailed; // Map has failed to load, we need to kick back to the main menu (unused?).
|
||||
|
||||
void* m_pUnk0; // r5apex_ds.exe 'CBaseServer::Clear() + 0x7E'
|
||||
SHORT* m_pUnk0; // r5apex_ds.exe 'CBaseServer::Clear() + 0x7E'
|
||||
void* m_pUnk1; // r5apex_ds.exe 'CBaseServer::Clear() + 0x93'
|
||||
void* m_pUnk2; // r5apex_ds.exe 'CServer::FrameJob() + 0x20'
|
||||
void* m_pUnk3;
|
||||
|
@ -29,7 +29,7 @@ public:
|
||||
int m_nMaxClients; // Current maxplayers setting
|
||||
GameMode_t m_nGameMode; // 1 (MP) 2 (PVE) 3 (SP)
|
||||
int m_nTickCount; // Simulation ticks - does not increase when game is paused - resets on restart.
|
||||
int m_nUnk0;
|
||||
int m_nTickInterval;
|
||||
int m_nUnk1;
|
||||
|
||||
// The following seem to be mainly used in c:\depot\r5launch\src\engine\client\clientstate.cpp.
|
||||
|
@ -12,6 +12,7 @@
|
||||
// Forward declarations
|
||||
//-----------------------------------------------------------------------------
|
||||
class CBaseEntity;
|
||||
class ServerClass;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
@ -26,7 +27,7 @@ public:
|
||||
protected:
|
||||
// Should never call delete on this!
|
||||
virtual ~IServerNetworkable() {}
|
||||
virtual void* Unk() {};
|
||||
virtual ServerClass* GetServerClass() {};
|
||||
};
|
||||
|
||||
|
||||
|
@ -14,7 +14,11 @@
|
||||
|
||||
class CPlayerState
|
||||
{
|
||||
char gap_0[8];
|
||||
public:
|
||||
// This virtual method is necessary to generate a vtable in all cases
|
||||
// (DECLARE_PREDICTABLE will generate a vtable also)!
|
||||
virtual ~CPlayerState() {}
|
||||
|
||||
int playerEntityIndex;
|
||||
char gap_c[4];
|
||||
__int64 currentClass;
|
||||
|
Loading…
x
Reference in New Issue
Block a user