home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Inc&AD2.1 / includes / graphics / sprite.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-11  |  445 b   |  28 lines

  1. #ifndef    GRAPHICS_SPRITE_H
  2. #define    GRAPHICS_SPRITE_H
  3. /*
  4. **    $VER: sprite.h 37.0 (07.01.91)
  5. **    Includes Release 38.56
  6. **
  7. **
  8. **
  9. **    (C) Copyright 1985-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #define SPRITE_ATTACHED 0x80
  18.  
  19. struct SimpleSprite
  20. {
  21.     UWORD *posctldata;
  22.     UWORD height;
  23.     UWORD   x,y;    /* current position */
  24.     UWORD   num;
  25. };
  26.  
  27. #endif    /* GRAPHICS_SPRITE_H */
  28.