Ejemplo n.º 1
0
 public Player(bool playable, Side side, Agent agent, List <StrategyCard> hands)
 {
     this.playable    = playable;
     this.side        = side;
     this.agent       = agent;
     this.hands       = new List <StrategyCard>(hands);
     this.sendIndexes = new List <int>();
     draw_num         = 2;
     send_num         = 1;
     mode             = ListMode.HANDS;
     lockon           = Lockon.NORMAL;
     death            = false;
     win = false;
 }
Ejemplo n.º 2
0
 public void lostPlayer()
 {
     lockon = Lockon.LOST;
 }
Ejemplo n.º 3
0
 public void lockonPlayer()
 {
     lockon = Lockon.LOCKON;
 }