mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-23 21:45:00 +03:00
921bceb967
* level select mod * map name * move mod to c file * Sfx Jukebox * fix bank boundaries * fix * expert modes * co-authored-by @petrie911 * add sfx
25 lines
429 B
C
25 lines
429 B
C
#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
|
|
|
|
/* ************************* */
|
|
|
|
#if MODS_LEVEL_SELECT == 1
|
|
void Map_LevelSelect(void);
|
|
#endif
|
|
|
|
#endif
|