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

11 lines
269 B
C#
Raw Normal View History

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