Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Base/BasePathGroup.cs

12 lines
250 B
C#
Raw Normal View History

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