Home | History | Annotate | Download | only in guido

Lines Matching refs:deck

221     This is used as a base class for all other stacks (e.g. the deck,
387 class Deck(Stack):
389 """The deck is a stack with support for shuffling.
396 A single click moves the top card to the game's open deck and
397 moves it face up; if we're out of cards, it moves the open deck
398 back to the deck.
549 self.deck = Deck(x, y, self)
570 self.deck.fill()
588 self.animatedmoveto(card, self.deck)
610 self.deck.shuffle()
613 card = self.deck.deal()
624 self.deck.add(card)