示例#1
0
 public Player()
 {
     //Defaults to Gryffindor
     this.hogwartshouse = new HouseGryffindor();
 }
示例#2
0
 public Player(string house)
 {
     this.hogwartshouse = ChooseAHouse(house);
 }
示例#3
0
 public Player(HogwartsHouses hh)
 {
     this.hogwartshouse = hh;
 }