1
0
mirror of synced 2024-12-02 11:07:26 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Base/BasePathGroup.cs
2019-04-07 21:14:39 -04:00

12 lines
250 B
C#

using System.Collections.Generic;
namespace FirstPlugin.Turbo.CourseMuuntStructs
{
public class BasePathGroup
{
public bool ConnectGroups = true;
public List<BasePathPoint> PathPoints = new List<BasePathPoint>();
}
}