2024-02-06 22:20:05 +08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
//----------------------------------------------------
|
|
|
|
|
|
|
|
class CPlayerPool
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
int field_0;
|
|
|
|
short field_4;
|
|
|
|
std::string field_6;
|
|
|
|
int field_22;
|
2024-02-15 22:41:04 +08:00
|
|
|
CLocalPlayer *m_pLocalPlayer;
|
2024-02-06 22:20:05 +08:00
|
|
|
int field_2A[MAX_PLAYERS];
|
|
|
|
|
|
|
|
char _gapFDA[4016];
|
|
|
|
|
|
|
|
int field_1F8A[MAX_PLAYERS];
|
|
|
|
int field_2F3A;
|
|
|
|
|
|
|
|
public:
|
2024-02-16 22:15:16 +08:00
|
|
|
|
|
|
|
CLocalPlayer * GetLocalPlayer() { return m_pLocalPlayer; };
|
|
|
|
|
2024-02-06 22:20:05 +08:00
|
|
|
CPlayerPool();
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------
|