Remove train station.

This commit is contained in:
2024-11-24 11:18:08 -06:00
parent 53dc496f2f
commit 57995a0e00
5 changed files with 0 additions and 67 deletions

View File

@ -34,7 +34,6 @@ target_sources(${DAWN_TARGET_NAME}
# Assets
tool_map(testmap maps/testmap.tmx)
tool_map(testmap2 maps/testmap2.tmx)
tool_map(train_station maps/train_station.tmx)
tool_copy(en en.json)
add_dependencies(${DAWN_TARGET_NAME} dawnassets)

View File

@ -11,7 +11,6 @@
const char_t * MAP_LIST_PATHS[] = {
"testmap.map",
"testmap2.map",
"train_station.map"
};
const int32_t MAP_LIST_COUNT = sizeof(MAP_LIST_PATHS) / sizeof(char_t*);

View File

@ -11,7 +11,6 @@
typedef enum {
MAP_LIST_TEST = 0,
MAP_LIST_TEST2 = 1,
MAP_LIST_TRAIN_STATION = 2,
} maplist_t;
extern const char_t *MAP_LIST_PATHS[];