home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Game Programming for Teens / VBGPFT.cdr / sources / chapter12 / ViewMap / globals.bas < prev    next >
Encoding:
BASIC Source File  |  2004-10-23  |  686 b   |  23 lines

  1. Attribute VB_Name = "globals"
  2. '---------------------------------------------------------------
  3. ' Visual Basic Game Programming for Teens
  4. ' Globals File
  5. '---------------------------------------------------------------
  6.  
  7. 'customize the program here
  8. Public Const SCREENWIDTH As Long = 800
  9. Public Const SCREENHEIGHT As Long = 600
  10.  
  11. 'tile and game world constants
  12. Public Const TILEWIDTH As Long = 64
  13. Public Const TILEHEIGHT As Long = 64
  14. Public Const MAPWIDTH As Long = 1500
  15. Public Const MAPHEIGHT As Long = 2000
  16.  
  17. Public Const GAMEWORLDWIDTH As Long = 0
  18. Public Const GAMEWORLDHEIGHT As Long = 0
  19.  
  20. Public Const WINDOWWIDTH As Long = 0
  21. Public Const WINDOWHEIGHT As Long = 0
  22.  
  23.