home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / aga_software / animdemo / stick.i < prev   
Text File  |  1993-01-22  |  720b  |  33 lines

  1. ******************************************************************************
  2. *
  3. * (c) Copyright 1993 Commodore-Amiga, Inc.  All rights reserved.
  4. *
  5. * This software is provided as-is and is subject to change; no warranties
  6. * are made.  All use is at your own risk.  No liability or responsibility
  7. * is assumed.
  8. *
  9. * stick.i - joystick structure.
  10. *
  11. *******************************************************************************
  12.  
  13.     include    'exec/types.i'
  14.  
  15.     STRUCTURE JoyStick,0
  16.     BYTE stick_up
  17.     BYTE stick_down
  18.     BYTE stick_left
  19.     BYTE stick_right
  20.     BYTE stick_fire
  21.     BYTE stick_click
  22.     BYTE old_stick_fire
  23.     BYTE stick_exit
  24.     LABEL JoyStick_SIZEOF
  25.     
  26. LEFT    EQU    1
  27. RIGHT    EQU    2
  28. UP     EQU    4
  29. DOWN    EQU    8
  30. FIRE    EQU    16
  31. CLICK    EQU    32
  32. EXIT    EQU    64
  33.