mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
17 lines
390 B
C
17 lines
390 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_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
|