1
0
mirror of synced 2025-03-02 16:23:21 +01:00

10 lines
195 B
C#
Raw Normal View History

2019-04-06 19:11:59 -04:00
using System.Collections.Generic;
namespace FirstPlugin.Turbo.CourseMuuntStructs
{
public class PathGroup
{
public List<PathPoint> PathPoints = new List<PathPoint>();
}
}