/// ---------------------------------------------
/// Shared Add-On for Behavior Designer Pro
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.BehaviorDesigner.AddOns.Shared.Demo
{
using UnityEngine;
///
/// Provides an interface for common pathfinding functions.
///
public interface IPathfindingAgent
{
///
/// Warps the pathfinding implementation.
///
/// The warp position.
void Warp(Vector3 position);
///
/// Sets the target destination.
///
/// The position that should be set.
void SetDestination(Vector3 position);
}
}