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

11 lines
269 B
C#

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