gather-and-defend/Assets/Scripts/DeleteButton.cs
2024-01-19 14:51:30 -05:00

13 lines
276 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
public class DeleteButton : PlacementButton
{
protected override DraggablePlaceholder Place()
{
throw new System.NotImplementedException();
}
}