home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Inc&AD1.3 / Includes / graphics / sprite.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-12  |  396 b   |  24 lines

  1. #ifndef GRAPHICS_SPRITE_H
  2. #define GRAPHICS_SPRITE_H
  3. /*
  4. **    $Filename: graphics/sprite.h $
  5. **    $Release: 1.3 $
  6. **
  7. **    
  8. **
  9. **    (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #define SPRITE_ATTACHED 0x80
  14.  
  15. struct SimpleSprite
  16. {
  17.     UWORD *posctldata;
  18.     UWORD height;
  19.     UWORD   x,y;    /* current position */
  20.     UWORD   num;
  21. };
  22.  
  23. #endif    /* GRAPHICS_SPRITE_H */
  24.