ID3/Assets/PathSegment.cs
2026-03-19 02:02:28 +03:00

17 lines
285 B
C#

using UnityEngine;
using System.Collections;
public class PathSegment
{
public Vector3 a;
public Vector3 b;
public PathSegment() : this(Vector3.zero, Vector3.zero) { }
public PathSegment(Vector3 a, Vector3 b)
{
this.a = a;
this.b = b;
}
}