21 lines
516 B
C#
21 lines
516 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();
|
|||
|
|
|||
|
event Action OnInteractionCompleted;
|
|||
|
}
|
|||
|
}
|