Back to project page LotR_Risk.
The source code is released under:
GNU General Public License
If you think the Android project LotR_Risk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.game; /*from www.jav a 2 s . co m*/ /** * Interface dfinissant les constantes de traitement lies aux tapes du jeu. * @author pierrot */ public interface InterfaceLOTR { public final static int SERVEUR_RECEPTION_JOUEURS = 3; public final static int SERVEUR_ENVOI_JOUEURS = 2; public final static int CREATION_JOUEURS = 1; public final static int FERMER_SERVEUR = 0; }