2024-01-12 20:11:40 +03:00
|
|
|
#ifndef MODS_H
|
|
|
|
#define MODS_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Level Select:
|
|
|
|
* Press left or right on the D-PAD to choose which level to play,
|
|
|
|
* useful for debugging and speedrunning training.
|
|
|
|
*/
|
|
|
|
#define MODS_LEVEL_SELECT 0
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sound Effects Jukebox:
|
|
|
|
* Ability to play sound effects inside the expert sound menu
|
|
|
|
*/
|
|
|
|
#define MODS_SFX_JUKEBOX 0
|
|
|
|
|
2024-04-20 22:18:09 +03:00
|
|
|
/**
|
|
|
|
* FPS Counter:
|
|
|
|
* Press L to toggle FPS Display
|
|
|
|
*/
|
|
|
|
#define MODS_FPS_COUNTER 0
|
|
|
|
|
|
|
|
|
2024-01-12 20:11:40 +03:00
|
|
|
/* ************************* */
|
|
|
|
|
|
|
|
#if MODS_LEVEL_SELECT == 1
|
|
|
|
void Map_LevelSelect(void);
|
|
|
|
#endif
|
|
|
|
|
2024-04-20 22:18:09 +03:00
|
|
|
#if MODS_FPS_COUNTER == 1
|
|
|
|
static void Play_RenderFps(void);
|
|
|
|
#endif
|
|
|
|
|
2024-01-12 20:11:40 +03:00
|
|
|
#endif
|