1
0
mirror of synced 2024-12-02 19:17:24 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Paths/PathGroup.cs
2019-04-06 21:30:25 -04:00

12 lines
238 B
C#

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