home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / exbas.arj / TEMP / 04-03.BAS < prev    next >
BASIC Source File  |  1995-01-20  |  680b  |  34 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. Mode = FGgetmode
  6. FGsetmode 19
  7. FGsetcolor 15
  8. FGrect 0, 319, 0, 199
  9. FGwaitkey
  10.  
  11. FGsetview 0, 639, 0, 399, 0, 159, 0, 99
  12. FGsetcolor 9
  13. FGrect FGxview(0), FGxview(639), FGyview(0), FGyview(399)
  14. FGwaitkey
  15.  
  16. FGsetview 0, 639, 0, 399, 160, 319, 0, 99
  17. FGsetcolor 10
  18. FGrect FGxview(0), FGxview(639), FGyview(0), FGyview(399)
  19. FGwaitkey
  20.  
  21. FGsetview 0, 639, 0, 399, 0, 159, 100, 199
  22. FGsetcolor 11
  23. FGrect FGxview(0), FGxview(639), FGyview(0), FGyview(399)
  24. FGwaitkey
  25.  
  26. FGsetview 0, 639, 0, 399, 160, 319, 100, 199
  27. FGsetcolor 12
  28. FGrect FGxview(0), FGxview(639), FGyview(0), FGyview(399)
  29. FGwaitkey
  30.  
  31. FGsetmode Mode
  32. FGreset
  33. END
  34.