home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / Chess-9 / Square.h < prev    next >
C/C++ Source or Header  |  1992-03-23  |  356b  |  17 lines

  1. @interface Square : Cell
  2. {
  3.   float background;
  4.   char *icon;
  5.   int type;
  6. }
  7.  
  8. - setBackground: (float) b;
  9. - highlight: (const NXRect *)f inView: v;
  10. - drawSelf:(const NXRect *)cellFrame inView:v;
  11. - drawInside:(const NXRect *)cellFrame inView:v;
  12. - drawBackground:(const NXRect *)f inView: v;
  13. - setIcon: (char const *)i;
  14. - (char const *)icon;
  15. - (int)type;
  16. @end
  17.