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);