summaryrefslogtreecommitdiff
path: root/editor.h
diff options
context:
space:
mode:
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