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