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