/// <summary>
 /// Adds the specified <see cref="TouchEvent"/> to Gestureworks' processing pipeline; typically used for passing touch position information to
 /// Gestureworks as obtained from external sources (e.g. TUIO).
 /// </summary>
 /// <param name="touchEvent">The <see cref="TouchEvent"/> to pass to Gestureworks for touch processing.</param>
 public void AddEvent(TouchEvent touchEvent)
 {
     GwNative.addEvent(touchEvent);
 }
Beispiel #2
0
 internal static extern IntPtr addEvent(TouchEvent touchEvent);