equal
deleted
inserted
replaced
|
1 /* |
|
2 * Projet : TraKERS |
|
3 * Module : MIDDLEWARE |
|
4 * Sous-Module : Tracking/Events |
|
5 * Classe : JumpEventArgs |
|
6 * |
|
7 * Auteur : alexandre.bastien@iri.centrepompidou.fr |
|
8 * |
|
9 * Fonctionnalités : Cette classe contient les membres utilisés lors de l'appel au listener correspondant |
|
10 * à l'événement : L'utilisateur a sauté. |
|
11 */ |
|
12 |
|
13 using System; |
|
14 using System.Collections.Generic; |
|
15 using System.Linq; |
|
16 using System.Text; |
|
17 using Trakers.Communication; |
|
18 |
|
19 namespace Trakers.Tracking.Events |
|
20 { |
|
21 public class JumpEventArgs : EventArgs |
|
22 { |
|
23 //Fenêtre de debug. |
|
24 public readonly Debug.DebugWindow debug; |
|
25 //Serveur TUIO. |
|
26 public readonly Server server; |
|
27 |
|
28 /* |
|
29 * Constructeur : Il prend l'affichage de debug et le serveur TUIO. |
|
30 */ |
|
31 public JumpEventArgs(Debug.DebugWindow _debug, Server _server) |
|
32 { |
|
33 debug = _debug; |
|
34 server = _server; |
|
35 } |
|
36 } |
|
37 } |