diff options
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h index 934d4d3..d356094 100644 --- a/src/client.h +++ b/src/client.h @@ -3,9 +3,10 @@ #include <stdbool.h> #include <stdint.h> +#include "color.h" #include "entry.h" +#include "image.h" #include "surface.h" -#include "util.h" struct client_state { /* Globals */ @@ -37,7 +38,10 @@ struct client_state { struct image background_image; struct color background_color; struct entry entry; + int32_t width; + int32_t height; uint32_t scale; + bool resize; } window; /* Keyboard state */ |