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

21 lines
514 B
C#
Raw Normal View History

2024-10-14 11:13:08 +00:00
using System;
2025-02-10 02:13:46 +00:00
using DDD.Npcs.Crews;
using DDD.Uis;
2024-10-14 11:13:08 +00:00
using UnityEngine;
2025-02-10 02:13:46 +00:00
namespace DDD.Interfaces
2024-10-14 11:13:08 +00:00
{
public interface ICrewInteraction
{
Transform CenterTransform { get; }
InteractionCanvas InteractionCanvas { get; }
bool EnableInteraction { get; }
float InteractionRadius { get; }
void InteractionCrew(Crew crew);
void CancelInteractionCrew();
2024-10-27 09:44:22 +00:00
bool CanInteractionCrew(Crew crew = null);
2024-10-14 11:13:08 +00:00
event Action OnInteractionCompleted;
}
}