blob: 3ff4d6cdda682c85779a665c8699b4eaf7fa6c86 (
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 width;
uint32_t height;
bool quit;
}
irodeo_window_state_t;
|