11 lines
246 B
C#
11 lines
246 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public class NpcStateContext
|
||
|
{
|
||
|
public INpcState PreviousState { get; set; }
|
||
|
public Vector3 PreviousDestination { get; set; }
|
||
|
}
|
||
|
}
|