#ifndef __EDITOR_H__ #define __EDITOR_H__ #include #include "level.h" typedef struct { } EditorState; typedef struct { Level *level; EditorState state; } Editor; void SE_DrawEditor(Editor *editor, Camera2D *camera); #endif