summaryrefslogtreecommitdiff
path: root/editor.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-07-31 22:12:48 +1000
committerquou <quou@disroot.org>2024-07-31 22:12:48 +1000
commit205f7d49530e6c32ec0a09045d9cb45dcf9b1752 (patch)
treee1d3432a677ff3511ed191aabfde6cf240f784b7 /editor.h
parent8d729883b3e134df8b9fc10f094df9fc3618bdb4 (diff)
GUI + map editor beginnings
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h13
1 files changed, 13 insertions, 0 deletions
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