home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / skyscrap / build / sfx.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-13  |  235 b   |  17 lines

  1. #ifndef __sfx_h
  2. #define __sfx_h
  3.  
  4. //------------------
  5. // enumeration for sounds in AIRKILL.SFX
  6. //------------------
  7. enum Sounds
  8. {
  9.   SND_NONE,
  10.   SND_BULLET,
  11.   SND_ROCKET,
  12.   SND_PLASMA,
  13.   SND_EXPLODE
  14. };
  15.  
  16. #endif //__sfx_h
  17.