Foerming/Assets/Scripts/Actions/ActionHandler.cs
2022-06-23 02:21:50 +02:00

9 lines
No EOL
276 B
C#

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);
}
}