mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-04 00:23:22 +08:00
0bd8c87f21
* Adds ` CLocalPlayer::Say(...)` stub
31 lines
462 B
C++
31 lines
462 B
C++
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------
|
|
|
|
class CPlayerPool
|
|
{
|
|
private:
|
|
int field_0;
|
|
short field_4;
|
|
std::string field_6;
|
|
int field_22;
|
|
CLocalPlayer *m_pLocalPlayer;
|
|
int field_2A[MAX_PLAYERS];
|
|
|
|
char _gapFDA[4016];
|
|
|
|
int field_1F8A[MAX_PLAYERS];
|
|
int field_2F3A;
|
|
|
|
public:
|
|
|
|
CLocalPlayer * GetLocalPlayer() { return m_pLocalPlayer; };
|
|
|
|
CPlayerPool();
|
|
};
|
|
|
|
//----------------------------------------------------
|