mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-30 22:17:13 +02:00
Don't clear entity containers untill after the virtual machine was closed. Should close #22
This commit is contained in:
@ -394,6 +394,21 @@ enum EntityFlags
|
||||
ENF_LOCKED = (2 << 1)
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------------------------------------
|
||||
* Used to identify entity types.
|
||||
*/
|
||||
enum EntityType
|
||||
{
|
||||
ENT_UNKNOWN = 0,
|
||||
ENT_BLIP,
|
||||
ENT_CHECKPOINT,
|
||||
ENT_KEYBIND,
|
||||
ENT_OBJECT,
|
||||
ENT_PICKUP,
|
||||
ENT_PLAYER,
|
||||
ENT_VEHICLE
|
||||
};
|
||||
|
||||
} // Namespace:: SqMod
|
||||
|
||||
/* ------------------------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user