예제 #1
0
 public void UnregisterDeck()
 {
     this.deck = null;
 }
예제 #2
0
 public void RegisterDeck(DeckBase<ICard> d)
 {
     if (this.deck != null) throw new Exceptions.DirtyDeckException("You must unregister a player's deck before registering a new one.");
     this.deck = d;
 }