mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-07 10:03:32 +08:00
17 lines
314 B
C++
17 lines
314 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();
|
|
}
|
|
|
|
//----------------------------------------------------
|
|
|