--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/middleware/src/Tracking/Events/SwipeEventArgs.cs Fri Mar 09 14:52:11 2012 +0100
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Trakers.Communication;
+using Trakers.Tracking.Gestures;
+
+namespace Trakers.Tracking.Events
+{
+ public class SwipeEventArgs : EventArgs
+ {
+ //Fenêtre de debug.
+ public readonly Debug.DebugWindow debug;
+ //Serveur TUIO.
+ public readonly Server server;
+ //Direction du swipe.
+ public readonly SwipeDetector.Direction direction;
+
+ /*
+ * Constructeur : Il prend l'affichage de debug, le serveur TUIO et la direction du swipe.
+ */
+ public SwipeEventArgs(Debug.DebugWindow _debug, Server _server, SwipeDetector.Direction _direction)
+ {
+ debug = _debug;
+ server = _server;
+ direction = _direction;
+ }
+ }
+}