ProjectDDD/Assets/_DDD/_Scripts/RestaurantCharacter/Interfaces/ICurrentDirection.cs
Jeonghyeon Ha c8bb7b5e18 RestaurantCharacter 폴더 구조 정리
- Core 폴더: 기본 컴포넌트들 (RestaurantCharacter, Animation, Movement, Interaction, Visual, MovementConstraint)
- Interfaces 폴더: 인터페이스들 (IAiMovement, ICurrentDirection, IRestaurantMovementConstraint)
- Player 폴더: 기존 유지
- Npc 폴더: 기존 유지 (Customer 하위 폴더 포함)
2025-08-19 17:18:13 +09:00

9 lines
127 B
C#

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