mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +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
|
||||
{
|
||||
private:
|
||||
char _gap0[20480];
|
||||
char gap0[16384];
|
||||
int field_4000[1024];
|
||||
public:
|
||||
CGangZonePool();
|
||||
~CGangZonePool() {};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user