예제 #1
0
 public Player(MagicGame game, Deck deck)
 {
     game.Add(this);
     game.StartGame += StartGame;
     this.game = game;
     this.deck = deck;
     manaPool = new ManaPool();
 }
 public DefaultPlayer(MagicGame game, Deck deck)
     : base(game, deck)
 {
 }
예제 #3
0
 public TestPlayer(MagicGame game, Deck deck)
     : base(game, deck)
 {
     this.game = game;
     this.deck = deck;
 }