blob: e1981cf8341987700aa0862d2fe0332484443e1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __EDITOR_H__
#define __EDITOR_H__
#include <raylib.h>
#include "xd.h"
typedef struct {
int currentLevel, currentLayer;
} EditorState;
typedef struct {
XdData *data;
EditorState state;
} Editor;
void SE_DrawEditor(Editor *editor, Camera2D *camera);
#endif
|