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:
parent
26505a6a09
commit
c2ff6762d3
@ -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)
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user