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