mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 04:14:47 +00:00
12 lines
173 B
Haxe
12 lines
173 B
Haxe
package;
|
|
|
|
class OptionsSubState extends MusicBeatSubstate
|
|
{
|
|
var textMenuItems:Array<String> = ['Master Volume', 'Sound Volume'];
|
|
|
|
public function new()
|
|
{
|
|
super();
|
|
}
|
|
}
|