protected virtual void OnRaiseKinectEvent(KinectArrowHitEventArgs e) { EventHandler <KinectArrowHitEventArgs> handler = RaiseKinectEvent; if (handler != null) { handler(this, e); } else { Console.WriteLine("No Subs"); } }
public void HandleKinectArrowHitEvent(object sender, KinectArrowHitEventArgs e) { throw new NotImplementedException(); }