Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Paths/PathGroup.cs

12 lines
238 B
C#
Raw Normal View History

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