middleware/src/MainModule/Events/BendEventArgs.cs
changeset 17 fda26bfcabef
child 27 6c08d4d7219e
equal deleted inserted replaced
16:a9ebacd6c089 17:fda26bfcabef
       
     1 /*
       
     2 * This file is part of the TraKERS\Middleware package.
       
     3 *
       
     4 * (c) IRI <http://www.iri.centrepompidou.fr/>
       
     5 *
       
     6 * For the full copyright and license information, please view the LICENSE_MIDDLEWARE
       
     7 * file that was distributed with this source code.
       
     8 */
       
     9 
       
    10 /*
       
    11  * Projet : TraKERS
       
    12  * Module : MIDDLEWARE
       
    13  * Sous-Module : MainModule/Events
       
    14  * Classe : BendEventArgs
       
    15  * 
       
    16  * Auteur : alexandre.bastien@iri.centrepompidou.fr
       
    17  * 
       
    18  * Fonctionnalités : Cette classe contient les membres utilisés lors de l'appel au listener correspondant
       
    19  * à l'événement : L'utilisateur s'est penché avec les jambes droites.
       
    20  */
       
    21 
       
    22 using System;
       
    23 using System.Collections.Generic;
       
    24 using System.Linq;
       
    25 using System.Text;
       
    26 using Trakers.Communication;
       
    27 using Trakers.Debug;
       
    28 
       
    29 namespace Trakers.MainModule.Events
       
    30 {
       
    31     public class BendEventArgs : MainEventArgs
       
    32     {
       
    33         /*
       
    34         * Constructeur.
       
    35         */
       
    36         public BendEventArgs(Server _server, DebugWindow _debug) : base(_server, _debug)
       
    37         {
       
    38         }
       
    39     }
       
    40 }