2026-03-24 11:39:01 +08:00

13 lines
214 B
C#

using UnityEngine;
public class PC_LooseEvent : MonoBehaviour,ILoose
{
public void Loose()
{
if(TryGetComponent(out MouseDragObj drag))
{
drag.isDrag = false;
}
}
}