
- Core 폴더: 기본 컴포넌트들 (RestaurantCharacter, Animation, Movement, Interaction, Visual, MovementConstraint) - Interfaces 폴더: 인터페이스들 (IAiMovement, ICurrentDirection, IRestaurantMovementConstraint) - Player 폴더: 기존 유지 - Npc 폴더: 기존 유지 (Customer 하위 폴더 포함)
7 lines
122 B
C#
7 lines
122 B
C#
namespace DDD
|
|
{
|
|
public interface IRestaurantMovementConstraint
|
|
{
|
|
public bool IsBlockingMovement();
|
|
}
|
|
} |