ActionHandlers working for Clicks on Tiles

This commit is contained in:
j-weissen 2022-06-23 02:21:50 +02:00
parent e160867e7e
commit 5d4bf8c940
12 changed files with 352 additions and 15 deletions

View file

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