1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-09-05 05:07:39 +00:00
Funkin/source/funkin/ui/debug/charting/dialogs/ChartEditorBaseMenu.hx
2025-02-17 19:25:33 -05:00

20 lines
457 B
Haxe

package funkin.ui.debug.charting.dialogs;
import haxe.ui.containers.menus.Menu;
// @:nullSafety // TODO: Fix null safety when used with HaxeUI build macros.
@:access(funkin.ui.debug.charting.ChartEditorState)
class ChartEditorBaseMenu extends Menu
{
var chartEditorState:ChartEditorState;
public function new(chartEditorState:ChartEditorState)
{
super();
this.chartEditorState = chartEditorState;
// this.destroyOnClose = true;
}
}