ActionHandlers working for Clicks on Tiles
This commit is contained in:
parent
e160867e7e
commit
5d4bf8c940
12 changed files with 352 additions and 15 deletions
9
Assets/Scripts/Actions/ActionHandler.cs
Normal file
9
Assets/Scripts/Actions/ActionHandler.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue