home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / ttt / build / voice.h < prev   
Encoding:
C/C++ Source or Header  |  1995-03-31  |  240 b   |  18 lines

  1. // ------- voice.h
  2.  
  3. #ifndef VOICE_H
  4. #define VOICE_H
  5.  
  6. #include "theatrix.h"
  7.  
  8. class Voice : public VocalHand    {
  9.     void initialize()
  10.         { load_sfxlib("ttt.sfx"); }
  11. public:
  12.     Voice(Director *dir) : VocalHand(dir)
  13.         { }
  14. };
  15.  
  16. #endif
  17.  
  18.