TRIGGERS.H 960 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef __TRIGGERS_H
  2. #define __TRIGGERS_H
  3. #include "eventq.h"
  4. #include "db.h"
  5. /***********************************************************************
  6. *
  7. * Enumerated Types
  8. *
  9. **********************************************************************/
  10. /***********************************************************************
  11. *
  12. * Function Prototypes
  13. *
  14. **********************************************************************/
  15. void trTriggerSector( unsigned nSector, XSECTOR *pXSector, int command );
  16. void trTriggerWall( unsigned nWall, XWALL *pXWall, int command );
  17. void trTriggerSprite( unsigned nSprite, XSPRITE *pXSprite, int command );
  18. void trMessageSector( unsigned nSector, EVENT event );
  19. void trMessageWall( unsigned nWall, EVENT event );
  20. void trMessageSprite( unsigned nSprite, EVENT event );
  21. void trTextOver( int textId );
  22. void trLightning( int forkID );
  23. void trProcessBusy( void );
  24. void trInit( void );
  25. #endif