home *** CD-ROM | disk | FTP | other *** search
/ Toolkit for DOOM / DOOMTOOL.ISO / editors / wadgc2.zip / WADLC.H < prev    next >
Text File  |  1994-07-31  |  636b  |  39 lines

  1. /* WADLC.H - some data structures for WADLC.C */
  2.  
  3. typedef struct
  4. {
  5.   char name[8];
  6.   short x,y;
  7. } vertex_t;
  8.  
  9. typedef struct
  10. {
  11.   char name[8];
  12.   short floorheight, ceilingheight;
  13.   char floortexture[8], ceilingtexture[8];
  14.   short brightness, special, tag;
  15. } sector_t;
  16.  
  17. typedef struct
  18. {
  19.   short sector;
  20.   short xoffset, yoffset;
  21.   char uppertexture[8], lowertexture[8], normaltexture[8];
  22. } sidedef_t;
  23.  
  24. typedef struct
  25. {
  26.   short from, to;
  27.   short attrs, type, tag;
  28.   short rightsidedef, leftsidedef;
  29. } linedef_t;
  30.  
  31. typedef struct
  32. {
  33.   short type;
  34.   short x,y;
  35.   short angle;
  36.   short attrs;
  37. } thing_t;
  38.   
  39.