Added sound system

Added delete sound
This commit is contained in:
andreja6
2018-04-26 20:01:37 -07:00
parent 9e61c9e4d2
commit e777f3ccc4
5 changed files with 124 additions and 0 deletions

10
AudioPlayer.h Normal file
View File

@@ -0,0 +1,10 @@
#include <G3DAll.h>
#pragma once
class AudioPlayer
{
public:
AudioPlayer(void);
~AudioPlayer(void);
void PlaySound(std::string);
};