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

10 lines
272 B
C#
Raw Normal View History

2023-12-15 06:15:44 +00:00
using UnityEngine;
public interface IOnBuildingExit
{
/// <summary>
/// Called when the building exits being hovered via the ObjectSelector class
/// </summary>
/// <param name="gameObject"></param>
public void OnBuildingExit(GameObject gameObject);
}