mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 01:55:52 -05:00
15 lines
224 B
Haxe
15 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);
|
|
}
|
|
}
|