OnGotTouchCapture() protected method

protected OnGotTouchCapture ( TouchEventArgs e ) : void
e TouchEventArgs
return void
コード例 #1
0
 private static void GotTouchCaptureClass(Actor sender, TouchEventArgs e)
 {
     if (sender != null)
     {
         sender.OnGotTouchCapture(e);
     }
 }
コード例 #2
0
ファイル: Actor.cs プロジェクト: jaquadro/MonoGdx
 private static void GotTouchCaptureClass(Actor sender, TouchEventArgs e)
 {
     if (sender != null)
         sender.OnGotTouchCapture(e);
 }