Files
HackerOoT/include/config.h
Yanis a10bfb24e5 Added a config file for memory stuff (#100)
* memory management

* fix english

* debug disp
2024-04-25 22:14:57 +02:00

21 lines
487 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"
#include "config/config_graphics.h"
#include "config/config_memory.h"
/* WARNING: Compatibility safeguards - don't remove this file unless you know what you're doing */
#include "config/config_safeguards.h"
#endif