mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
22 lines
248 B
C++
22 lines
248 B
C++
|
|
#pragma once
|
|
|
|
typedef struct _LABEL
|
|
{
|
|
char *szText;
|
|
char _gap4[25];
|
|
} LABEL;
|
|
|
|
class CLabelPool
|
|
{
|
|
private:
|
|
LABEL m_Labels[MAX_LABELS];
|
|
BOOL m_bLabelSlotState[MAX_LABELS];
|
|
public:
|
|
CLabelPool();
|
|
~CLabelPool();
|
|
|
|
BOOL Delete(WORD wLabelID);
|
|
|
|
};
|