From 205f7d49530e6c32ec0a09045d9cb45dcf9b1752 Mon Sep 17 00:00:00 2001 From: quou Date: Wed, 31 Jul 2024 22:12:48 +1000 Subject: GUI + map editor beginnings --- editor.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 editor.h (limited to 'editor.h') diff --git a/editor.h b/editor.h new file mode 100644 index 0000000..ffe22e5 --- /dev/null +++ b/editor.h @@ -0,0 +1,13 @@ +#ifndef editor_h +#define editor_h + +struct GUI; +struct Map; + +typedef struct { + int pad; +} Editor; + +void edit_map(Editor* e, struct GUI* g, struct Map* m); + +#endif -- cgit v1.2.3-54-g00ecf