示例#1
0
 public EndOfGameState(IPlayerChip playerChip, IInfoManager infoManager)
 {
     this.playerChip  = playerChip;
     this.infoManager = infoManager;
 }
示例#2
0
 public LostGameState(IPlayerChip playerChip, IGameCore gameCore)
 {
     this.playerChip = playerChip;
     this.gameCore   = gameCore;
 }
示例#3
0
 public ReleaseState(IGameCore gameCore, IPlayerChip playerChip)
 {
     this.gameCore   = gameCore;
     this.playerChip = playerChip;
 }