1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/ControlsSubState.hx
2021-02-24 18:32:51 -05:00

16 lines
224 B
Haxe

package;
import flixel.FlxSprite;
import flixel.FlxSubState;
class ControlsSubState extends FlxSubState
{
public function new()
{
super();
var bullshit = new FlxSprite().makeGraphic(100, 100);
add(bullshit);
}
}