using System.Collections; using System.Collections.Generic; using UnityEngine; public class DeviceObj : MonoBehaviour { public DeviceList BindData; public DeviceType BindType; void Start() { } private void OnMouseDown() { DevicePanelManager.Instance.ShowBindList(BindType, this); } }