home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Examples / InfoWow-0.00-MIHS / src / Spewer.h < prev    next >
Encoding:
Text File  |  1994-03-21  |  457 b   |  28 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. #define FREQUENCY 5    // 1 out of this many clock ticks will start
  5.                         // a new envelope flying
  6.  
  7. #define MAX_SPEWS 40    // max number of envelopes that can be on the
  8.                         // screen at any given time
  9.  
  10. @interface Spewer:Object
  11. {
  12.     BOOL createOK;
  13.     id animator;
  14.     id windowList;
  15.     id initiator;
  16.     id _extraList;
  17.     id idleWindows;
  18. }
  19.  
  20. - init;
  21. - start:sender;
  22. - stop:sender;
  23. - windowWillClose:sender;
  24. - free;
  25. - addWindow;
  26. - move:sender;
  27.  
  28. @end