1
0
mirror of synced 2024-12-03 11:37:21 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Wrappers/PathPointNode.cs
KillzXGaming e830ca7278 Cleanup.
2019-04-07 19:37:31 -04:00

23 lines
534 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Switch_Toolbox.Library;
namespace FirstPlugin.Turbo.CourseMuuntStructs
{
public class PathPointNode : TreeNodeCustom
{
public PathPointNode(string text) { Text = text; Checked = true; }
public PathPoint PathPoint;
public void OnChecked(bool Checked)
{
if (PathPoint != null)
PathPoint.RenderablePoint.Visible = Checked;
}
}
}