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

12 lines
296 B
C#
Raw Normal View History

2023-12-15 06:15:44 +00:00
using UnityEngine;
public interface IOnBuildingMoveEnd
{
/// <summary>
/// Called at the end of moving an already placed object via the GridObjectOptions/ObjectPlacer class
/// </summary>
/// <param name="gameObject"></param>
public void OnMoveEnd(GameObject gameObject);
}