1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef __EDITOR_H__ #define __EDITOR_H__ #include <raylib.h> #include "level.h" typedef struct { } EditorState; typedef struct { Level *level; EditorState state; } Editor; void SE_DrawEditor(Editor *editor, Camera2D *camera); #endif