1
0
mirror of synced 2025-01-11 05:32:16 +01:00

12 lines
250 B
C#
Raw Normal View History

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
}
}