14 lines
180 B
C#
Raw Normal View History

2025-03-26 14:11:26 +08:00
using UnityEngine.Events;
using UnityEngine;
public interface IObjDrag
{
bool isOn { get; set; }
UnityEvent<GameObject> OnDragEnd { get; }
void OnDoubleClick();
}