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