Ejemplo n.º 1
0
 public void init(bool p1, int resources, SimpleController controller)
 {
     unitList        = new List <Unit>();
     this.resources  = resources;
     isPlayer1       = p1;
     this.controller = controller;
 }
Ejemplo n.º 2
0
 public Player(bool p1, SimpleController controller)
 {
     init(p1, 0, controller);
 }