1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-11-26 14:16:00 +00:00

Merge pull request #2451 from nebulazorua/abstract-optionname

abstract enum pagename
This commit is contained in:
Eric 2024-06-07 22:02:18 -04:00 committed by GitHub
commit 9a78060329
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -259,11 +259,11 @@ class OptionsMenu extends Page
#end #end
} }
enum PageName enum abstract PageName(String)
{ {
Options; var Options = "options";
Controls; var Controls = "controls";
Colors; var Colors = "colors";
Mods; var Mods = "mods";
Preferences; var Preferences = "preferences";
} }