1
0
mirror of synced 2024-12-04 11:58:03 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Paths/PathGroup.cs

10 lines
195 B
C#
Raw Normal View History

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