ProjectDDD/Assets/_DDD/_Scripts/Restaurant/Character/Interfaces/ICurrentDirection.cs
2025-08-27 17:25:11 +09:00

9 lines
127 B
C#

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