home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Tutorial / Stepstone_Tutorial / Fruit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-18  |  187 b   |  15 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface Fruit : Object
  4. {
  5.     char *color;
  6.     int diameter;
  7. }
  8. +create;
  9. -color:(char *) aColor;
  10. -(char *) color;
  11. -diameter: (int) aSize;
  12. -(int) diameter;
  13. -grow;
  14. @end
  15.