Foerming/Assets/Scripts/Actions/NextDayActionHandler.cs
2022-06-23 13:35:22 +02:00

8 lines
No EOL
203 B
C#

using UnityEngine;
namespace Actions {
public interface NextDayActionHandler {
public void InvokeAction(GameObject gameObject);
public bool Matches(GameObject gameObject);
}
}