home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume8 / cutup / part01 / types.h < prev    next >
Text File  |  1989-09-18  |  121b  |  11 lines

  1. typedef struct coords_t {
  2.     int y;
  3.     int x;
  4.     int dir;
  5.     } coords_t;
  6.  
  7. typedef struct delta_t {
  8.     int dy;
  9.     int dx;
  10.     } delta_t;
  11.