1
0
mirror of synced 2024-12-03 19:47:29 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Paths/PathGroup.cs

12 lines
238 B
C#
Raw Normal View History

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