예제 #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;
 }
예제 #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;
 }