mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-23 06:57:31 +08:00
18 lines
253 B
C++
18 lines
253 B
C++
|
|
#ifndef SAMPSRV_PLAYERPOOL_H
|
|
#define SAMPSRV_PLAYERPOOL_H
|
|
|
|
// TODO: PLAYER_SPAWN_INFO
|
|
typedef struct _PLAYER_SPAWN_INFO // size: 46
|
|
{
|
|
char _gap0[46];
|
|
} PLAYER_SPAWN_INFO;
|
|
|
|
class CPlayerPool // size: WL 199024
|
|
{
|
|
private:
|
|
char _gap[199024];
|
|
};
|
|
|
|
#endif
|