summaryrefslogtreecommitdiffhomepage
path: root/src/init.h
blob: 39560b78bfa3647632a93bb3e7561eae1914e1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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() \
	)

void
reset_game_systems(void);