home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume18 / xmpb / part08 / bits.h next >
C/C++ Source or Header  |  1993-07-12  |  268b  |  20 lines

  1. struct menu_p {
  2.     char menu_name[40]; 
  3.     char menu_item[40][40];
  4.     char descr[40][480];
  5.     int     cost[40];
  6.     struct menu_p *next;
  7. };
  8.  
  9. struct menu_p *head, *curr;
  10.  
  11. #define ITEMS 0
  12. #define WEAPONS 1
  13. #define LS 7
  14. #define RS 8
  15. #define BS 9
  16. #define ENERGY 10
  17.  
  18. #define NUMLRADS 9
  19.  
  20.