blob: 0d7450e55035874254cf5c9eaab8e8b008349d2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <raylib.h>
#include "level.h"
typedef struct {
} EditorState;
typedef struct {
Level *level;
EditorState state;
} Editor;
void SE_DrawEditor(Editor *editor, Camera2D *camera);
|