OldBlueWater/BlueWater/Assets/GolemiteGames/GridBuilder2/Scripts/IOnBuildingTimedStart.cs

13 lines
382 B
C#
Raw Normal View History

2023-12-15 06:15:44 +00:00
using UnityEngine;
public interface IOnBuildingTimedStart
{
/// <summary>
/// Called when a building with a timer is placed via the ObjectPlacer class -
/// Note: Should be used sparingly as the timed object gets destroyed once the timer is finished
/// </summary>
/// <param name="gameObject"></param>
public void OnTimerStart(GameObject gameObject);
}