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/toolboxes/ChartEditorBaseToolbox.hx
2025-02-17 19:25:33 -05:00

26 lines
642 B
Haxe

package funkin.ui.debug.charting.toolboxes;
import haxe.ui.containers.dialogs.CollapsibleDialog;
/**
* 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() {}
}