Enum consistency cleanup

This commit is contained in:
Kermalis
2023-09-24 20:38:11 -04:00
parent 90a51e6ef6
commit a0297c645f
21 changed files with 190 additions and 155 deletions

View File

@@ -22,10 +22,10 @@ enum TerrainType
enum CrossableTerrain
{
CROSSABLE_TERRAIN_REGULAR = 0,
CROSSABLE_TERRAIN_LIQUID = 1,
CROSSABLE_TERRAIN_CREVICE = 2,
CROSSABLE_TERRAIN_WALL = 3,
CROSSABLE_TERRAIN_REGULAR,
CROSSABLE_TERRAIN_LIQUID,
CROSSABLE_TERRAIN_CREVICE,
CROSSABLE_TERRAIN_WALL,
NUM_CROSSABLE_TERRAIN
};