Example #1
0
 public Wallala()
     : base()
 {
     p = new Partie(32, 32);
     p.Initialize("carte reseau",
                           new List<string>() { "Pandawan01", "Pingvin01" },
                           new List<int>() { 0, 0 },
                           new List<int>() { 0, 1 },
                           new List<Color>() { Color.Blue, Color.Red },
                           e_typeDePartie.Joute,
                           e_brouillardDeGuerre.Normal,
                           42);
 }
Example #2
0
 public Enfer()
     : base()
 {
     p = new Partie(32, 32);
     boutons.Add(new BoutonLien(Divers.X / 2 - 200, 700, new Rectangle(0, 0, 800, 300), null, 5));
     p.Initialize("carte reseau",
                           new List<string>() { "Pandawan01", "Pingvin01" },
                           new List<int>() { 0, 0 },
                           new List<int>() { 0, 1 },
                           new List<Color>() { Color.Blue, Color.Red },
                           e_typeDePartie.Joute,
                           e_brouillardDeGuerre.Normal,
                           42);
 }