#include #pragma once class AudioPlayer { public: AudioPlayer(void); ~AudioPlayer(void); static void PlaySound(std::string); static void init(); };