1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-23 15:26:06 +00:00

mod menu thingie

This commit is contained in:
Cameron Taylor 2021-03-24 19:19:08 -04:00
parent 180c3db3c4
commit 2fdea58951

View file

@ -32,11 +32,19 @@ class OptionsState extends MusicBeatState
var controls = addPage(Controls, new ControlsMenu());
var colors = addPage(Colors, new ColorsMenu());
#if cpp
var mods = addPage(Mods, new ModMenu());
#end
if (options.hasMultipleOptions())
{
options.onExit.add(exitToMainMenu);
controls.onExit.add(switchPage.bind(Options));
colors.onExit.add(switchPage.bind(Options));
#if cpp
mods.onExit.add(switchPage.bind(Options));
#end
}
else
{