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