1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-09-07 14:38:06 +00:00
Funkin/source/funkin/ui/debug/charting/dialogs/ChartEditorBaseMenu.hx

20 lines
457 B
Haxe
Raw Permalink Normal View History

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
{
2023-12-16 02:09:01 +00:00
var chartEditorState:ChartEditorState;
2023-12-16 02:09:01 +00:00
public function new(chartEditorState:ChartEditorState)
{
super();
2023-12-16 02:09:01 +00:00
this.chartEditorState = chartEditorState;
// this.destroyOnClose = true;
}
}