Made AudioPlayer's play and init method static

This commit is contained in:
andreja6
2018-04-26 21:41:07 -07:00
parent 78cdb01ef1
commit 6d49e266dd
3 changed files with 19 additions and 14 deletions

View File

@@ -6,5 +6,6 @@ class AudioPlayer
public:
AudioPlayer(void);
~AudioPlayer(void);
void PlaySound(std::string);
static void PlaySound(std::string);
static void init();
};