diff --git a/src/p_spec.h b/src/p_spec.h index bbdd5f9a3..c534cfcb0 100644 --- a/src/p_spec.h +++ b/src/p_spec.h @@ -57,6 +57,12 @@ typedef enum TMWPF_FINISHLINE = 1<<3, } textmapwaypointflags_t; +typedef enum +{ + TMBCF_BACKANDFORTH = 1, + TMBCF_REVERSE = 1<<1, +} textmapbattlecapsuleflags_t; + typedef enum { TMFF_AIMLESS = 1, @@ -129,20 +135,6 @@ typedef enum TMB_BARRIER = 1<<1, } textmapbrakflags_t; -typedef enum -{ - TMWPF_DISABLED = 1, - TMWPF_SHORTCUT = 1<<1, - TMWPF_NORESPAWN = 1<<2, - TMWPF_FINISHLINE = 1<<3, -} textmapwaypointflags_t; - -typedef enum -{ - TMBCF_BACKANDFORTH = 1, - TMBCF_REVERSE = 1<<1, -} textmapbattlecapsuleflags_t; - typedef enum { TMICF_INVERTTIMEATTACK = 1,