diff options
Diffstat (limited to 'state.h')
| -rw-r--r-- | state.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,10 +4,12 @@ #include "window.h" #include "draw.h" -typedef struct { +typedef struct State State; + +struct State { Window *win; Drawable *draw; -} State; +}; State *state_create(Window *win, Drawable *draw); |
