home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / inc&ad2.0 / includes / graphics / sprite.h < prev    next >
C/C++ Source or Header  |  1992-09-01  |  497b  |  30 lines

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