Files
HackerOoT/include/config.h
2024-01-31 22:48:05 +01:00

19 lines
417 B
C

#ifndef CONFIG_H
#define CONFIG_H
#include "libc/stdbool.h"
/**
* All HackerOoT config headers included into one.
*/
#include "config/config_debug_features.h"
#include "config/config_debug_controls.h"
#include "config/config_debug.h"
#include "config/config_game.h"
/* WARNING: Compatibility safeguards - don't remove this file unless you know what you're doing */
#include "config/config_safeguards.h"
#endif