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