mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-02 02:09:58 -04:00
Merge pull request #2451 from nebulazorua/abstract-optionname
abstract enum pagename
This commit is contained in:
commit
9a78060329
1 changed files with 6 additions and 6 deletions
|
@ -259,11 +259,11 @@ class OptionsMenu extends Page
|
|||
#end
|
||||
}
|
||||
|
||||
enum PageName
|
||||
enum abstract PageName(String)
|
||||
{
|
||||
Options;
|
||||
Controls;
|
||||
Colors;
|
||||
Mods;
|
||||
Preferences;
|
||||
var Options = "options";
|
||||
var Controls = "controls";
|
||||
var Colors = "colors";
|
||||
var Mods = "mods";
|
||||
var Preferences = "preferences";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue