11 lines
269 B
C#
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);
|
|
}
|