mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 14:10:27 -04:00
11 lines
165 B
C
11 lines
165 B
C
#pragma once
|
|
|
|
#include "sdl_context.h"
|
|
|
|
inline SDLContext &get_sdl_global_context () {
|
|
static SDLContext sdl_global_context;
|
|
return sdl_global_context;
|
|
}
|
|
|
|
|
|
|