/// ---------------------------------------------
/// Senses Pack for Behavior Designer Pro
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.BehaviorDesigner.AddOns.SensesPack.Runtime.Utility
{
using Unity.Mathematics;
///
/// Interface for objects that have a position in 3D space.
///
public interface IPosition
{
///
/// Gets the position of the object in 3D space.
///
float3 Position { get; }
}
}