13 lines
212 B
C#
13 lines
212 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Game.Pathfinding;
|
|||
|
|
|||
|
public class WayPoint
|
|||
|
{
|
|||
|
public Vector3 position { get; private set; }
|
|||
|
|
|||
|
public WayPoint(Vector3 position)
|
|||
|
{
|
|||
|
this.position = position;
|
|||
|
}
|
|||
|
}
|