mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-02 03:34:54 +00:00
21 lines
292 B
Haxe
21 lines
292 B
Haxe
package ui;
|
|
|
|
import flixel.FlxSprite;
|
|
import flixel.addons.display.FlxGridOverlay;
|
|
|
|
class StageBuilderState extends MusicBeatState
|
|
{
|
|
public function new()
|
|
{
|
|
super();
|
|
}
|
|
|
|
override function create()
|
|
{
|
|
super.create();
|
|
|
|
var bg:FlxSprite = FlxGridOverlay.create(10, 10);
|
|
add(bg);
|
|
}
|
|
}
|