From ed7dfaad432b6e3fe838b9a2b5fe225abea5365d Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Tue, 26 May 2026 15:35:13 -0400 Subject: tbh i did a lot --- editor/tile.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 editor/tile.h (limited to 'editor/tile.h') diff --git a/editor/tile.h b/editor/tile.h new file mode 100644 index 0000000..9ede5bd --- /dev/null +++ b/editor/tile.h @@ -0,0 +1,21 @@ +#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; +} Tile_Editor; + +void tile_proc(void); +void tile_draw(void); + +#endif // TILE_H_ -- cgit v1.3-2-g0d8e