mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-23 06:57:31 +08:00
[server] Implement CPlayerPool destructor
* Add CPlayerPool::Delete() stub
This commit is contained in:
parent
386e232b0d
commit
05c50379c2
@ -17,3 +17,16 @@ CPlayerPool::CPlayerPool()
|
||||
field_FA8 = 0;
|
||||
field_3096C = 0;
|
||||
}
|
||||
|
||||
CPlayerPool::~CPlayerPool()
|
||||
{
|
||||
for(PLAYERID playerId = 0; playerId < MAX_PLAYERS; playerId++) {
|
||||
Delete(playerId,0);
|
||||
}
|
||||
}
|
||||
|
||||
BOOL CPlayerPool::Delete(PLAYERID playerId, BYTE byteReason)
|
||||
{
|
||||
// TODO: CPlayerPool::Delete W .text:00466570 L .text:080D0A90
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -31,6 +31,9 @@ private:
|
||||
public:
|
||||
|
||||
CPlayerPool();
|
||||
~CPlayerPool();
|
||||
|
||||
BOOL Delete(PLAYERID playerId, BYTE byteReason);
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user