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