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