oba jetzt wirklich

This commit is contained in:
j-weissen 2022-06-23 13:35:59 +02:00
parent a5ded24c36
commit 5433305b14
4 changed files with 32 additions and 36 deletions

View file

@ -0,0 +1,10 @@
using System.Collections.Generic;
using System.Transactions;
using UnityEngine;
namespace Actions {
public interface ClickActionHandler {
public void InvokeAction(GameObject gameObject);
public bool Matches(GameObject gameObject, UsableItem usableItem);
}
}