home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume11 / bt / part02 / types.h < prev   
Text File  |  1990-12-11  |  282b  |  24 lines

  1. typedef struct {
  2.   char terrain;
  3.   int population;
  4.   int lastuse;
  5.   int troops;
  6.   int owner;
  7. } hex;
  8.  
  9. typedef struct {
  10.   int x;
  11.   int y;
  12. } location;
  13.  
  14. typedef struct {
  15.   int action;
  16.   int hexes;
  17.   int troops;
  18.   int population;
  19.   int citadels;
  20.   int live;
  21.   location start;
  22. } player;
  23.  
  24.