19 lines
486 B
C#
19 lines
486 B
C#
using UnityEngine;
|
|
|
|
namespace BlueWater.Interfaces
|
|
{
|
|
public interface IPlayerInteraction
|
|
{
|
|
Transform CenterTransform { get; }
|
|
Canvas InteractionCanvas { get; }
|
|
Transform InteractionUi { get; }
|
|
bool EnableInteraction { get; }
|
|
float InteractionRadius { get; }
|
|
|
|
void Interaction();
|
|
void CancelInteraction();
|
|
bool CanInteraction();
|
|
void ShowInteractionUi();
|
|
void HideInteractionUi();
|
|
}
|
|
} |