home *** CD-ROM | disk | FTP | other *** search
- #ifndef GRAPHICS_SPRITE_H
- #define GRAPHICS_SPRITE_H
- /*
- ** $VER: sprite.h 37.0 (07.01.91)
- ** Includes Release 38.56
- **
- **
- **
- ** (C) Copyright 1985-1992 Commodore-Amiga, Inc.
- ** All Rights Reserved
- */
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #define SPRITE_ATTACHED 0x80
-
- struct SimpleSprite
- {
- UWORD *posctldata;
- UWORD height;
- UWORD x,y; /* current position */
- UWORD num;
- };
-
- #endif /* GRAPHICS_SPRITE_H */
-