1
0
mirror of synced 2025-03-02 00:20:37 +01:00
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>();
}
}