#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