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

9 lines
127 B
C#
Raw Normal View History

2025-08-12 11:46:30 +00:00
using UnityEngine;
namespace DDD
{
public interface ICurrentDirection
{
Vector3 GetCurrentDirection();
}
}