ProjectDDD/Assets/_DDD/_Scripts/RestaurantCharacter/ICurrentDirection.cs
2025-08-12 20:46:30 +09:00

9 lines
127 B
C#

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