Ejemplo n.º 1
0
 public CL_player(PlayerType_Enum type, string name, CL_cards cards)
 {
     this.Points = 0;
     this.Name   = name;
     this.Cards  = cards;
     this.Type   = type;
 }
Ejemplo n.º 2
0
 public CL_player(PlayerType_Enum type, string name)
 {
     this.Points = 0;
     this.Name   = name;
     this.Cards  = new CL_cards(new List <Card>());
     this.Type   = type;
 }