summaryrefslogtreecommitdiff
path: root/src/strife/p_spec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/p_spec.h')
-rw-r--r--src/strife/p_spec.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/strife/p_spec.h b/src/strife/p_spec.h
index f5b57032..f3a5c074 100644
--- a/src/strife/p_spec.h
+++ b/src/strife/p_spec.h
@@ -46,6 +46,18 @@ extern int levelTimeCount;
// at game start
void P_InitPicAnims (void);
+// villsa [STRIFE]
+typedef enum
+{
+ FLOOR_WATER = 0,
+ FLOOR_SLIME = 1,
+ FLOOR_SOLID = 2,
+ FLOOR_END = -1
+} terraintype_e;
+
+void P_InitTerrainTypes(void); // villsa [STRIFE]
+terraintype_e P_GetTerrainType(mobj_t* mobj); // villsa [STRIFE]
+
// at map load
void P_SpawnSpecials (void);