12 lines
239 B
C#
12 lines
239 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Interaction.Conditions
|
||
|
|
{
|
||
|
|
public interface IInteractCondition
|
||
|
|
{
|
||
|
|
bool CanInteract(GameObject interactor, out string failReason);
|
||
|
|
void OnInteractSucceeded(GameObject interactor);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|