14 lines
180 B
C#
14 lines
180 B
C#
|
|
|
||
|
|
using UnityEngine.Events;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public interface IObjDrag
|
||
|
|
{
|
||
|
|
bool isOn { get; set; }
|
||
|
|
|
||
|
|
UnityEvent<GameObject> OnDragEnd { get; }
|
||
|
|
void OnDoubleClick();
|
||
|
|
|
||
|
|
}
|
||
|
|
|