コード例 #1
0
ファイル: Player.cs プロジェクト: eserozvataf/poker
 public Player()
 {
     this.m_Cards = new CardCollection <bool>();
 }
コード例 #2
0
ファイル: Ground.cs プロジェクト: eserozvataf/poker
 public Ground()
 {
     this.m_Cards = new CardCollection <bool>();
     this.m_Name  = "Ground";
     this.m_Stage = GroundStage.None;
 }