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