diff options
| author | theo3 <arisstephenson2@gmail.com> | 2021-10-26 22:06:24 -0700 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2021-10-26 22:06:24 -0700 |
| commit | 6ecaea44c5944acd4a5e8e11582e280e69e22e08 (patch) | |
| tree | 79bfc775f141834893c900162eb3689d9038dbfc /include/tiles.h | |
| parent | d29468c30bcf5d786e4d97446d8d3512063c71bc (diff) | |
add tiles.h
Diffstat (limited to 'include/tiles.h')
| -rw-r--r-- | include/tiles.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/tiles.h b/include/tiles.h new file mode 100644 index 00000000..9915face --- /dev/null +++ b/include/tiles.h @@ -0,0 +1,18 @@ +#ifndef TILES_H +#define TILES_H + +typedef enum { + CUT_BUSH = 0x1C, + CUT_GRASS = 0x1D, + CUT_SIGNPOST = 0x1E, + CUT_TREE = 0x1F, + ROCK = 0x55, + CHEST = 0x73, + SIGNPOST = 0x176, + PERMA_ROCK = 0x1D3, + PERMA_ROCK2 = 0x1D4, + PERMA_ROCK3 = 0x1D5, + PERMA_ROCK4 = 0x1D6, +} Tile; + +#endif // TILES_H |
