mirror of
https://github.com/ApfelTeeSaft/FunkinMP.git
synced 2026-09-02 11:43:31 +00:00
12 lines
424 B
Haxe
12 lines
424 B
Haxe
package funkin.ui.debug.charting.contextmenus;
|
|
|
|
@:access(funkin.ui.debug.charting.ChartEditorState)
|
|
@:build(haxe.ui.ComponentBuilder.build("assets/exclude/data/ui/chart-editor/context-menus/default.xml"))
|
|
class ChartEditorDefaultContextMenu extends ChartEditorBaseContextMenu
|
|
{
|
|
public function new(chartEditorState2:ChartEditorState, xPos2:Float = 0, yPos2:Float = 0)
|
|
{
|
|
super(chartEditorState2, xPos2, yPos2);
|
|
}
|
|
}
|