diff options
| author | Reinmmar <herwig.orlich@gmail.com> | 2023-11-29 09:13:55 +0100 |
|---|---|---|
| committer | Reinmmar <herwig.orlich@gmail.com> | 2023-11-29 09:13:55 +0100 |
| commit | 3d3b6c1b2c39ff8737ef51ce1f4da7b0c0652aa9 (patch) | |
| tree | 1faf80ebdfc5da0bb9029efaa677c2d3251b9d65 /include | |
| parent | c19e313df4758a6be19384b1b728283b55ffa92b (diff) | |
cleaned up matching function
Diffstat (limited to 'include')
| -rw-r--r-- | include/player.h | 1 | ||||
| -rw-r--r-- | include/tiles.h | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/player.h b/include/player.h index 6cfd1383..a003a610 100644 --- a/include/player.h +++ b/include/player.h @@ -209,6 +209,7 @@ typedef enum { SURFACE_AUTO_LADDER, SURFACE_CLIMB_WALL, SURFACE_2C, + SURFACE_FF = 0xff, } SurfaceType; typedef enum { diff --git a/include/tiles.h b/include/tiles.h index 9915face..1d3cac90 100644 --- a/include/tiles.h +++ b/include/tiles.h @@ -8,6 +8,15 @@ typedef enum { CUT_TREE = 0x1F, ROCK = 0x55, CHEST = 0x73, + CHEST_OPEN = 0x74, + TORCH = 0x76, + TORCH_LIT = 0x77, + PRESSURE_BUTTON = 0x78, + PRESSURE_BUTTON_PRESSED = 0x79, + PRESSURE_SQUARE = 0x7a, + PRESSURE_SQUARE_PRESSED = 0x7b, + STAIRS_UP = 0x92, + STAIRS_DOWN = 0x93, SIGNPOST = 0x176, PERMA_ROCK = 0x1D3, PERMA_ROCK2 = 0x1D4, |
