Foerming/Assets/Scripts/Actions/NextDayActionHandler.cs
2022-06-24 08:05:57 +02:00

11 lines
No EOL
290 B
C#

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