mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-04 00:23:22 +08:00
[server] Update CGangZonePool ctor/dtor
This commit is contained in:
parent
2a34366051
commit
70d9ddbd14
@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
#include "main.h"
|
||||||
|
|
||||||
|
CGangZonePool::CGangZonePool()
|
||||||
|
{
|
||||||
|
for (WORD wZone = 0; wZone < MAX_GANG_ZONES; wZone++)
|
||||||
|
{
|
||||||
|
field_4000[wZone] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -5,7 +5,11 @@
|
|||||||
class CGangZonePool // size: WL 20480
|
class CGangZonePool // size: WL 20480
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
char _gap0[20480];
|
char gap0[16384];
|
||||||
|
int field_4000[1024];
|
||||||
|
public:
|
||||||
|
CGangZonePool();
|
||||||
|
~CGangZonePool() {};
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user