mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-23 06:57:31 +08:00
18 lines
389 B
C++
18 lines
389 B
C++
|
|
#include "../main.h"
|
|
|
|
//----------------------------------------------------
|
|
|
|
CMenuPool::CMenuPool()
|
|
{
|
|
// loop through and initialize all net players to null and slot states to false
|
|
for (BYTE byteMenuID = 0; byteMenuID < MAX_MENUS; byteMenuID++)
|
|
{
|
|
field_200[byteMenuID] = 0;
|
|
field_0[byteMenuID] = 0;
|
|
}
|
|
field_400 = -128;
|
|
}
|
|
|
|
//----------------------------------------------------
|