public Player(Game game, Game.User user) { Game = game; User = user; _hand = new List<Card>(); _battlefield = new List<Card>(); _resourceController = new ResourceController(this); }
protected GamePhase(Game game, Game.User owner) { _game = game; Owner = owner; _game.Publish(new StartPhaseMessage(this)); }