blob: bcc53d630350ed7a815ea71ee376348f39c384b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "rodeo.h"
void
init_game_systems(void);
void
deinit_game_systems(void);
#define game_systems_init_do() \
mrodeo_defer_do( \
init_game_systems(), \
deinit_game_systems() \
)
|