Ejemplo n.º 1
0
 public YugiohGameCard(YugiohGame game)
 {
     Game = game;
 }
Ejemplo n.º 2
0
 public YugiohTurn(YugiohGamePlayer player, YugiohGame game, int turnCount)
 {
     _player     = player;
     _turnOfGame = turnCount;
     _game       = game;
 }
Ejemplo n.º 3
0
 public void PlayTurn(YugiohGame game, int turnOfGame)
 {
     new YugiohTurn(this, game, turnOfGame).Execute();
 }