home *** CD-ROM | disk | FTP | other *** search
- Option Base 1
-
- Global Const AppName$ = "Accordian"
- Global Const CardSpace = 50 'Space between cards
-
- Global Cards(52) As Integer 'Shuffled Deck
- Global Table(52) As Integer 'Laid out cards
-
- Global Undoer(52) As Integer 'Undo Table: Last Table before move
- Global Undone As Integer
- Global UndoPiles As Integer
- Global UndoNextCard As Integer
-
- Global NextCard As Integer 'Next card to be delt
- Global Piles As Integer 'Number of piles on table
- Global DisplayError As Integer'Should we display error messages?
- Global Compressed As Integer 'Should we display compressed?
- Global GamesWon, GamesLost As Integer 'Game stats
-
-