Files
SA-MP/saco/net/labelpool.h

22 lines
248 B
C
Raw Normal View History

2024-02-12 20:16:37 +08:00
#pragma once
typedef struct _LABEL
2024-02-12 20:16:37 +08:00
{
char *szText;
char _gap4[25];
} LABEL;
2024-02-12 20:16:37 +08:00
class CLabelPool
{
private:
LABEL m_Labels[MAX_LABELS];
BOOL m_bLabelSlotState[MAX_LABELS];
2024-02-12 20:16:37 +08:00
public:
CLabelPool();
~CLabelPool();
2024-02-12 20:16:37 +08:00
BOOL Delete(WORD wLabelID);
2024-02-12 20:16:37 +08:00
};