SoundParser.h 400 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef SOUND_PARSER_H
  2. #define SOUND_PARSER_H
  3. #include <Ogre.h>
  4. #include "common/File.h"
  5. #include "common/TypeDefine.h"
  6. class SoundParser
  7. {
  8. public:
  9. SoundParser();
  10. virtual ~SoundParser();
  11. void Update();
  12. // debug routines
  13. void DumpSequenceData( const Ogre::String& file );
  14. private:
  15. void UpdateSpu();
  16. };
  17. extern SoundParser *SOUND_PARSER;
  18. #endif // SOUND_PARSER_H