13 lines
276 B
C#
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();
|
|
}
|
|
}
|