mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-12-14 23:22:30 +00:00
11 lines
238 B
C#
11 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>();
|
|
}
|
|
}
|