9 lines
No EOL
276 B
C#
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);
|
|
}
|
|
} |