using UnityEngine; public interface IOnBuildingTimedEnd { /// /// Called when a building with a timer has finished via the ObjectPlacer class /// Note: The timed object at this point is now destroyed. The IOnBuildingPlace OnPlace() method is now also called at this point /// public void OnTimerEnd(); }