Files
SoulliesOfficial ef7b479712 initial
2025-11-25 08:19:33 -05:00

20 lines
596 B
C#

/// ---------------------------------------------
/// 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;
/// <summary>
/// Interface for objects that have a position in 3D space.
/// </summary>
public interface IPosition
{
/// <summary>
/// Gets the position of the object in 3D space.
/// </summary>
float3 Position { get; }
}
}