home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/appkit.h>
-
- typedef int GKTrackerId;
-
- // Other shapes besides NXRect that you can use for collision detection
- // shapes.
-
- typedef struct _GKCircle { /* circle */
- NXPoint center;
- NXCoord radius;
- } GKCircle;
-
- typedef struct _GKTriangle { /* triangle */
- NXPoint points[3];
- } GKTriangle;
-
- typedef struct _GKVector { NXCoord x, y; } GKVector;
-
-