Files
2025-06-05 10:47:20 +02: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;
}
}