diff options
Diffstat (limited to 'src/editor.h')
| -rw-r--r-- | src/editor.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/editor.h b/src/editor.h new file mode 100644 index 0000000..0d7450e --- /dev/null +++ b/src/editor.h @@ -0,0 +1,13 @@ +#include <raylib.h> + +#include "level.h" + +typedef struct { +} EditorState; + +typedef struct { + Level *level; + EditorState state; +} Editor; + +void SE_DrawEditor(Editor *editor, Camera2D *camera); |
