mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-25 21:31:31 +00:00
Add constants for Line_SetAutomap{Flags,Style}
This commit is contained in:
parent
fc4d47b612
commit
720318cddc
1 changed files with 22 additions and 0 deletions
22
zdefs.acs
22
zdefs.acs
|
@ -1126,3 +1126,25 @@
|
|||
#define SECPART_Floor 0
|
||||
#define SECPART_Ceiling 1
|
||||
#define SECPART_3D 2
|
||||
|
||||
// For Line_SetAutomapFlags; These are or'd together
|
||||
#define AMLF_Secret 0
|
||||
#define AMLF_DontDraw 1
|
||||
#define AMLF_Mapped 2
|
||||
#define AMLF_Revealed 3
|
||||
|
||||
// For Line_SetAutomapStyle
|
||||
#define AMLS_Default 0
|
||||
#define AMLS_OneSided 1
|
||||
#define AMLS_TwoSided 2
|
||||
#define AMLS_FloorDiff 3
|
||||
#define AMLS_CeilingDiff 4
|
||||
#define AMLS_ExtraFloor 5
|
||||
#define AMLS_Special 6
|
||||
#define AMLS_Secret 7
|
||||
#define AMLS_NotSeen 8
|
||||
#define AMLS_Locked 9
|
||||
#define AMLS_IntraTeleport 10
|
||||
#define AMLS_InterTeleport 11
|
||||
#define AMLS_UnexploredSecret 12
|
||||
#define AMLS_Portal 13
|
||||
|
|
Loading…
Reference in a new issue