Example #1
0
 public static Result sedeplacer(Integer i, Integer j, Integer thei, Integer thej) {
   Gc.Couleur[] equipes = {Gc.Couleur.bleu, Gc.Couleur.rouge};
   Carte carte = new Carte(10, equipes);
   carte.getCase(i, j).getGc().mouvement(carte.getCarte(), thei, thej);
   return ok(plateau.render("LPWars", carte, thei, thej));
 }
Example #2
0
 public static Result fin() {
   Gc.Couleur[] equipes = {Gc.Couleur.bleu, Gc.Couleur.rouge};
   Carte carte = new Carte(10, equipes);
   carte.finTour();
   return ok(plateau.render("LPWars", carte, null, null));
 }