mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-12-18 08:53:08 +00:00
11 lines
250 B
C#
11 lines
250 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FirstPlugin.Turbo.CourseMuuntStructs
|
|
{
|
|
public class BasePathGroup
|
|
{
|
|
public bool ConnectGroups = true;
|
|
|
|
public List<BasePathPoint> PathPoints = new List<BasePathPoint>();
|
|
}
|
|
}
|