home *** CD-ROM | disk | FTP | other *** search
- //
- // Snakes
- //
- // Module for BackSpace.app
- // 20 Aug 1992
- // Matt Pharr- pharr@cs.yale.edu
- //
-
- #import <appkit/appkit.h>
- #import "Thinker.h"
-
- @interface SnakesView:View
- {
- int nSnakes;
- int aliveSnakes;
- int nSteps;
- id nSnakesSlider;
- id inspectorPanel;
- }
-
- -oneStep;
- -initFrame:(const NXRect *)frameRect;
- -drawSelf:(const NXRect *)rects :(int)rectCount;
- -inspector:sender;
- -setNSnakes:sender;
-
- @end
-