mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
24 lines
391 B
C++
24 lines
391 B
C++
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------
|
|
|
|
class CNetPlayer
|
|
{
|
|
public:
|
|
//char _gap0[48];
|
|
char _gap0[4];
|
|
int field_4;
|
|
BOOL m_bIsNPC;
|
|
int field_C;
|
|
CRemotePlayer *m_pRemotePlayer;
|
|
std::string m_PlayerName;
|
|
|
|
CNetPlayer(PCHAR szPlayerName, BOOL bIsNPC);
|
|
~CNetPlayer();
|
|
};
|
|
|
|
//----------------------------------------------------
|