12 lines
238 B
C#
12 lines
238 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FirstPlugin.Turbo.CourseMuuntStructs
|
|
{
|
|
public class PathGroup
|
|
{
|
|
public bool ConnectGroups = true;
|
|
|
|
public List<PathPoint> PathPoints = new List<PathPoint>();
|
|
}
|
|
}
|