OldBlueWater/BlueWater/Assets/02.Scripts/Npc/NpcStateContext.cs

11 lines
246 B
C#
Raw Normal View History

using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public class NpcStateContext
{
public INpcState PreviousState { get; set; }
public Vector3 PreviousDestination { get; set; }
}
}