#ifndef SOUND_TEST_H #define SOUND_TEST_H #include "sound_control.h" #include "SDL/SDL.h" #include "SDL/SDL_mixer.h" class SoundTest { public: SoundTest(); ~SoundTest(); int main (void); SoundControl* sound; int counter; int through; }; #endif