Exemple #1
0
 public DiscardPile(HandGame game) : base(game)
 {
 }
Exemple #2
0
 public LocalPlayer(HandGame Game) : base(Game)
 {
     referenceCard = Game.Content.Load <Texture2D>("Love Letter/reference card");
 }
Exemple #3
0
 public AIPlayer(HandGame Game) : base(Game)
 {
 }
 public MiddleTable(HandGame game, Player player) : base(game, player)
 {
 }
Exemple #5
0
 public Deck(HandGame game) : base(game)
 {
 }
Exemple #6
0
 public Player(HandGame Game)
 {
     Hand        = new Hand(this.Game = Game, this);
     tableMiddle = new MiddleTable(Game, this);
 }
Exemple #7
0
 public CardPool(HandGame game)
 {
     Game = game;
 }
 public RealCardPool(HandGame game) : base(game)
 {
 }
Exemple #9
0
 public Hand(HandGame game, Player player) : base(game)
 {
     this.player = player;
 }