12 lines
364 B
C#
12 lines
364 B
C#
using BlueWaterProject;
|
|
using UnityEngine.AI;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BehaviorDesigner.Runtime
|
|
{
|
|
[System.Serializable]
|
|
public class SharedNavMeshAgent : SharedVariable<NavMeshAgent>
|
|
{
|
|
public static implicit operator SharedNavMeshAgent(NavMeshAgent value) { return new SharedNavMeshAgent { mValue = value }; }
|
|
}
|
|
} |