using UnityEngine; namespace Actions { /// /// Implementing classes handle nextDayAction /// public interface NextDayActionHandler { public void InvokeAction(GameObject gameObject); public bool Matches(GameObject gameObject); } }