1
0
mirror of synced 2024-12-02 19:17:24 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Base/BasePathGroup.cs

12 lines
250 B
C#
Raw Normal View History

2019-04-07 01:11:59 +02:00
using System.Collections.Generic;
namespace FirstPlugin.Turbo.CourseMuuntStructs
{
2019-04-08 03:14:39 +02:00
public class BasePathGroup
2019-04-07 01:11:59 +02:00
{
2019-04-07 03:30:25 +02:00
public bool ConnectGroups = true;
2019-04-08 03:14:39 +02:00
public List<BasePathPoint> PathPoints = new List<BasePathPoint>();
2019-04-07 01:11:59 +02:00
}
}