OldBlueWater/BlueWater/Assets/GolemiteGames/GridBuilder2/Scripts/IOnBuildingExit.cs
2023-12-15 15:15:44 +09:00

10 lines
272 B
C#

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);
}