SoundParser.cpp 269 B

12345678910111213141516171819202122232425262728293031323334
  1. #include "SoundParser.h"
  2. #include "engine/SoundManager.h"
  3. #include "../../common/Logger.h"
  4. SoundParser *SOUND_PARSER = NULL;
  5. SoundParser::SoundParser()
  6. {
  7. }
  8. SoundParser::~SoundParser()
  9. {
  10. }
  11. void
  12. SoundParser::Update()
  13. {
  14. }
  15. void
  16. SoundParser::UpdateSpu()
  17. {
  18. }