CapersProject/Assets/02.Scripts/Interface/ICrewInteraction.cs
2024-10-27 18:44:22 +09:00

21 lines
532 B
C#

using System;
using BlueWater.Npcs.Crews;
using BlueWater.Uis;
using UnityEngine;
namespace BlueWater.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;
}
}