1
0
mirror of synced 2025-01-11 05:32:16 +01:00
2019-04-07 21:14:39 -04:00

12 lines
250 B
C#

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