1
0
mirror of synced 2025-03-03 00:33:16 +01:00

12 lines
238 B
C#
Raw Normal View History

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