mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
23 lines
431 B
C++
23 lines
431 B
C++
|
|
#include "../main.h"
|
|
|
|
//----------------------------------------------------
|
|
|
|
CNetPlayer::CNetPlayer(PCHAR szPlayerName, BOOL bIsNPC)
|
|
{
|
|
m_bIsNPC = bIsNPC;
|
|
field_C = 0;
|
|
field_4 = 0;
|
|
m_PlayerName = szPlayerName;
|
|
m_pRemotePlayer = new CRemotePlayer();
|
|
}
|
|
|
|
//----------------------------------------------------
|
|
|
|
CNetPlayer::~CNetPlayer()
|
|
{
|
|
SAFE_DELETE(m_pRemotePlayer);
|
|
}
|
|
|
|
//----------------------------------------------------
|