1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 09:09:00 +00:00
Funkin/source/funkin/ui/debug/charting/toolboxes/ChartEditorBaseToolbox.hx
2023-12-15 21:09:01 -05:00

29 lines
769 B
Haxe

package funkin.ui.debug.charting.toolboxes;
import haxe.ui.containers.dialogs.Dialog;
import haxe.ui.containers.dialogs.CollapsibleDialog;
import haxe.ui.containers.dialogs.Dialog.DialogEvent;
import haxe.ui.core.Component;
/**
* The base class for the Toolboxes (manipulatable, arrangeable control windows) in the Chart Editor.
*/
// @:nullSafety // TODO: Fix null safety when used with HaxeUI build macros.
@:access(funkin.ui.debug.charting.ChartEditorState)
class ChartEditorBaseToolbox extends CollapsibleDialog
{
var chartEditorState:ChartEditorState;
private function new(chartEditorState:ChartEditorState)
{
super();
this.chartEditorState = chartEditorState;
}
/**
* Override to implement this.
*/
public function refresh() {}
}