home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c120 / 2.ddi / LIFE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-12  |  310 b   |  19 lines

  1. /* life.h  constants for life game */
  2.  
  3. #define ROWS    24
  4. #define COLS    80
  5.  
  6. /* control key translations */
  7.  
  8. #define ESC 27
  9. #define UP_CHAR 200
  10. #define DOWN_CHAR    208
  11. #define LEFT_CHAR 203
  12. #define RIGHT_CHAR 205
  13. #define BOL_CHAR 199
  14. #define EOL_CHAR 207
  15. #define Ins_char 210
  16. #define Del_char 211
  17.  
  18.  
  19.