home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OS9_6X09 / GAMES / Reversi.lzh / rev_img.h < prev    next >
Text File  |  1991-05-02  |  610b  |  26 lines

  1. /* include file for the reversi image file
  2. * May 1991 -- Joel Matthew Rees
  3. *
  4. * The y dimension is the same as the x dimension for all images in this file.
  5. */
  6.  
  7.  
  8. /* the font, with x dimension, screen type, and buffer length
  9. */
  10. extern char gcfont[];
  11. extern int gcfontx, gcfontty, gcfontln;
  12.  
  13.  
  14. /* the playing pieces, with x dimension, screen type, and buffer length
  15. */
  16. extern int piecex, piecety;
  17. extern char black[], white[];
  18. extern int blackln, whiteln;
  19.  
  20.  
  21. /* the cursors, with x dimension, screen type, and buffer length
  22. */
  23. extern int cursx, cursty;
  24. extern char illegal[], arcxhair[];
  25. extern int illln, arcxhaln;
  26.