blob: ffe22e5882fa1bc24417606ce8a2fc7ea6bfb5f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef editor_h
#define editor_h
struct GUI;
struct Map;
typedef struct {
int pad;
} Editor;
void edit_map(Editor* e, struct GUI* g, struct Map* m);
#endif
|