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