14 lines
291 B
C#
14 lines
291 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace BlueWater.Interfaces
|
|||
|
{
|
|||
|
public interface IPlayerInteraction
|
|||
|
{
|
|||
|
Transform Transform { get; }
|
|||
|
bool EnableInteraction { get; }
|
|||
|
|
|||
|
void Interaction();
|
|||
|
void ShowInteractionUi();
|
|||
|
void HideInteractionUi();
|
|||
|
}
|
|||
|
}
|