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) { }
public TestPlayer(MagicGame game, Deck deck) : base(game, deck) { this.game = game; this.deck = deck; }