mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
4c09be8e80
* Update CGangZonePool constructor
21 lines
408 B
C++
21 lines
408 B
C++
|
|
#ifndef SAMPSRV_GANGZONEPOOL_H
|
|
#define SAMPSRV_GANGZONEPOOL_H
|
|
|
|
//----------------------------------------------------
|
|
|
|
class CGangZonePool
|
|
{
|
|
private:
|
|
float m_fGangZone[MAX_GANG_ZONES][4];
|
|
BOOL m_bSlotState[MAX_GANG_ZONES];
|
|
public:
|
|
CGangZonePool();
|
|
~CGangZonePool() {};
|
|
WORD New(float fMinX, float fMinY, float fMaxX, float fMaxY);
|
|
};
|
|
|
|
//----------------------------------------------------
|
|
|
|
#endif
|