CapersProject/Assets/02.Scripts/Interface/ICrewInteraction.cs

21 lines
516 B
C#
Raw Normal View History

2024-10-14 11:13:08 +00:00
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();
event Action OnInteractionCompleted;
}
}