summaryrefslogtreecommitdiff
path: root/src/editor.h
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-01-19 02:05:56 +0500
committerilotterytea <iltsu@alright.party>2025-01-19 02:05:56 +0500
commit3bfc51ee2ce8931ce0ef6952e1bfc0d2f52e30cf (patch)
tree89ead1b2a5c670d45a45e46ecc9e4e072c34f71d /src/editor.h
parent940e7825753b2a72a253199cb33767e04257dbd4 (diff)
feat: basic screen manager
Diffstat (limited to 'src/editor.h')
-rw-r--r--src/editor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editor.h b/src/editor.h
index 0d7450e..ddd030f 100644
--- a/src/editor.h
+++ b/src/editor.h
@@ -1,3 +1,5 @@
+#ifndef __EDITOR_H__
+#define __EDITOR_H__
#include <raylib.h>
#include "level.h"
@@ -11,3 +13,4 @@ typedef struct {
} Editor;
void SE_DrawEditor(Editor *editor, Camera2D *camera);
+#endif