summaryrefslogtreecommitdiff
path: root/src/editor.h
blob: ddd030f5d266ee75bc7cc904049268c844f77888 (plain)
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