Stop sound event up and running.

This commit is contained in:
Stiffly
2015-09-23 14:14:11 +02:00
parent 4f341250d7
commit 346ee13dd5
7 changed files with 74 additions and 33 deletions
+2
View File
@@ -14,6 +14,7 @@ class Sound : public Resource
friend class ResourceManager;
public:
ALuint Buffer() { return m_Buffer; };
std::string Path() { return m_Path; };
private:
Sound(std::string path);
@@ -28,6 +29,7 @@ private:
ALuint LoadFile(std::string path);
ALuint m_Buffer;
std::string m_Path;
};