Ajouts de musique et irrKlang.

This commit is contained in:
Marc-Eric Martel
2021-10-19 10:27:59 -04:00
parent 167548dfc2
commit df3441dad6
778 changed files with 73920 additions and 13 deletions

22
SQCSim2021/audio.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef AUDIO_H__
#define AUDIO_H__
#include <irrKlang.h>
#include "define.h"
class Audio {
private:
irrklang::ISoundEngine* m_WavEngine;
bool m_state = false;
public:
Audio();
~Audio();
bool GetState() const;
void SetState(bool state);
};
#endif // AUDIO_H__