diff -r bc94a25d867a -r 41d7283934c1 QTfrontend/SDLs.h --- a/QTfrontend/SDLs.h Sat Aug 16 13:29:18 2008 +0000 +++ b/QTfrontend/SDLs.h Sat Aug 16 14:28:44 2008 +0000 @@ -21,14 +21,22 @@ #include +#include "SDL_mixer.h" + + class SDLInteraction : public QObject { Q_OBJECT - public: +private: + Mix_Music * music; + +public: SDLInteraction(); ~SDLInteraction(); QStringList getResolutions() const; + void StartMusic(); + void StopMusic(); }; #endif