summaryrefslogtreecommitdiffstats
path: root/edit.h
diff options
context:
space:
mode:
Diffstat (limited to 'edit.h')
-rw-r--r--edit.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/edit.h b/edit.h
new file mode 100644
index 0000000..c0f7d8f
--- /dev/null
+++ b/edit.h
@@ -0,0 +1,15 @@
+#ifndef EDIT_H_
+#define EDIT_H_
+
+#include "level.h"
+
+#define EDIT_MODE_VIEW 0
+#define EDIT_MODE_SELECTED 1
+#define EDIT_MODE_ADD 2
+
+int getEditMode();
+
+ROOM *getActiveRoom();
+void setActiveRoom(ROOM *room);
+
+#endif /*EDIT_H_*/