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

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 18
  7. FGsetcolor 9
  8. FGfillpage
  9. FGsetcolor 14
  10.  
  11. FGmove 0, 0
  12. FGjustify -1, 1
  13. FGprint "Fastgraph", 9
  14. FGmove 320, 0
  15. FGjustify 0, 1
  16. FGprint "Fastgraph", 9
  17. FGmove 639, 0
  18. FGjustify 1, 1
  19. FGprint "Fastgraph", 9
  20.  
  21. FGmove 0, 240
  22. FGjustify -1, 0
  23. FGprint "Fastgraph", 9
  24. FGmove 320, 240
  25. FGjustify 0, 0
  26. FGprint "Fastgraph", 9
  27. FGmove 639, 240
  28. FGjustify 1, 0
  29. FGprint "Fastgraph", 9
  30.  
  31. FGmove 0, 479
  32. FGjustify -1, -1
  33. FGprint "Fastgraph", 9
  34. FGmove 320, 479
  35. FGjustify 0, -1
  36. FGprint "Fastgraph", 9
  37. FGmove 639, 479
  38. FGjustify 1, -1
  39. FGprint "Fastgraph", 9
  40. FGwaitkey
  41.  
  42. FGsetmode OldMode
  43. FGreset
  44.  
  45. END
  46.