1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Fix wrong parameter flags declaration and introduce another flag for the upcomming area system.

This commit is contained in:
Sandu Liviu Catalin 2017-06-18 20:27:22 +03:00
parent 26505a6a09
commit c2ff6762d3

View File

@ -415,11 +415,15 @@ enum EventType
EVT_MAX
};
/* ------------------------------------------------------------------------------------------------
* Entity flags to control certain behaviors.
*/
enum EntityFlags
{
ENF_DEFAULT = (0),
ENF_OWNED = (1 << 1),
ENF_LOCKED = (2 << 1)
ENF_LOCKED = (1 << 2),
ENF_AREA_TRACK = (1 << 3)
};
/* ------------------------------------------------------------------------------------------------