Frame/Assets/Scripts/BFS/WayPoint.cs

14 lines
246 B
C#
Raw Normal View History

2024-04-04 23:51:14 +08:00
using UnityEngine;
namespace Game.Pathfinding
2024-04-04 23:51:14 +08:00
{
public class WayPoint
2024-04-04 23:51:14 +08:00
{
public Vector3 position { get; private set; }
public WayPoint(Vector3 position)
{
this.position = position;
}
2024-04-04 23:51:14 +08:00
}
}