CapersProject/Assets/02.Scripts/BlueWater/Interface/ICrewInteraction.cs
2025-02-10 11:13:46 +09:00

21 lines
514 B
C#

using System;
using DDD.Npcs.Crews;
using DDD.Uis;
using UnityEngine;
namespace DDD.Interfaces
{
public interface ICrewInteraction
{
Transform CenterTransform { get; }
InteractionCanvas InteractionCanvas { get; }
bool EnableInteraction { get; }
float InteractionRadius { get; }
void InteractionCrew(Crew crew);
void CancelInteractionCrew();
bool CanInteractionCrew(Crew crew = null);
event Action OnInteractionCompleted;
}
}