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