blob: f7e0c2626b408d3a92e7b90f617d079adfe45633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
// -- external --
#include "SDL.h"
#include "SDL_syswm.h"
// -- system --
#include "inttypes.h"
#include "stdbool.h"
typedef
struct
{
SDL_Window* window;
SDL_Surface* screen_surface;
SDL_SysWMinfo wmi;
uint32_t screen_width;
uint32_t screen_height;
bool quit;
}
irodeo_window_state_t;
|