home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / macraysh.sit / Code / Headers / maccreate.h < prev    next >
Encoding:
Text File  |  1992-04-08  |  368 b   |  25 lines

  1. /* The popup in our object creator returns the type selected by the user
  2.  * We need to know what this type is so that we can create the correct object structure
  3.  * The M prefix stands for Menu
  4.  */
  5. enum {
  6.     MPlane = 1,
  7.     MSphere,
  8.     MCone,
  9.     MBox,
  10.     MTorus,
  11.     MBlob,
  12.     MDisc,
  13.     MTriangle,
  14.     MPolygon,
  15.     MHf,
  16.     MCylinder,
  17.     MList,
  18.     MGrid,
  19.     MDifference,
  20.     MIntersection,
  21.     MUnion
  22. } ;
  23.  
  24.  
  25.