예제 #1
0
 /// <summary>
 /// Sets this cardslot's current card
 /// </summary>
 /// <param name="c">The card to place in this cardslot</param>
 public void SetCard(Card c)
 {
     CurrentCard = c;
     CurrentCard.Move(this.X, this.Y);
 }