options menu in progress

This commit is contained in:
Cameron Taylor
2021-02-24 18:32:51 -05:00
parent 88c26f9ca4
commit f86dc69cde
7 changed files with 106 additions and 29 deletions

View File

@ -1,5 +1,6 @@
package;
import flixel.FlxSprite;
import flixel.FlxSubState;
class ControlsSubState extends FlxSubState
@ -7,5 +8,8 @@ class ControlsSubState extends FlxSubState
public function new()
{
super();
var bullshit = new FlxSprite().makeGraphic(100, 100);
add(bullshit);
}
}