ProjectDDD/Assets/_DDD/_Scripts/Restaurant/RestaurantCharacter/Interfaces/ICurrentDirection.cs

9 lines
127 B
C#

using UnityEngine;
namespace DDD
{
public interface ICurrentDirection
{
Vector3 GetCurrentDirection();
}
}