8 lines
No EOL
203 B
C#
8 lines
No EOL
203 B
C#
using UnityEngine;
|
|
|
|
namespace Actions {
|
|
public interface NextDayActionHandler {
|
|
public void InvokeAction(GameObject gameObject);
|
|
public bool Matches(GameObject gameObject);
|
|
}
|
|
} |