mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-21 20:27:13 +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
|
EVT_MAX
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Entity flags to control certain behaviors.
|
||||||
|
*/
|
||||||
enum EntityFlags
|
enum EntityFlags
|
||||||
{
|
{
|
||||||
ENF_DEFAULT = (0),
|
ENF_DEFAULT = (0),
|
||||||
ENF_OWNED = (1 << 1),
|
ENF_OWNED = (1 << 1),
|
||||||
ENF_LOCKED = (2 << 1)
|
ENF_LOCKED = (1 << 2),
|
||||||
|
ENF_AREA_TRACK = (1 << 3)
|
||||||
};
|
};
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user