mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-02-17 04:11:23 -05:00
20 lines
292 B
Haxe
20 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);
|
|
}
|
|
}
|