#ifndef TILE_H_ #define TILE_H_ #include #include typedef struct { int width; int height; int *tiles; } Map; typedef struct { Map *open_map; tyui_Id tile_editor_win; tyui_Id test_win; } Tile_Editor; void tile_proc(void); void tile_draw(void); #endif // TILE_H_