changed AudioPlayer::PlaySound() to AudioPlayer::playSound()

This commit is contained in:
andreja6
2018-05-01 12:14:54 -07:00
parent c875454b40
commit e6ca1cd502
4 changed files with 70 additions and 54 deletions

View File

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