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

12 lines
272 B
C#
Raw Normal View History

2023-12-15 06:15:44 +00:00
using UnityEngine;
public interface IOnBuildingRemove
{
/// <summary>
/// Called when an object is removed from the grid via the ObjectRemover class
/// </summary>
/// <param name="gameObject"></param>
public void OnRemove(GameObject gameObject);
}