mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-12-18 17:03:42 +00:00
16 lines
422 B
C#
16 lines
422 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 PathCollectionNode : TreeNodeCustom
|
|
{
|
|
public PathCollectionNode(string text) { Text = text; Checked = true; }
|
|
|
|
public List<BasePathGroup> PathGroups = new List<BasePathGroup>();
|
|
}
|
|
}
|