public static void PanelEvent(object sender, string hidInstance, HIDSkeleton hidSkeleton, PanelEventType panelEventType) { OnPanelEvent?.Invoke(sender, new PanelEventArgs { HidInstance = hidInstance, HidSkeleton = hidSkeleton, EventType = panelEventType }); }
public static bool OnPanelEventEventSubscribed() { return(OnPanelEvent != null && OnPanelEvent.GetInvocationList().Length > 0); }