QTfrontend/SDLs.h
changeset 1223 41d7283934c1
parent 1066 1f1b3686a2b0
child 1684 b3f4ec08f0a4
--- 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 <QStringList>
 
+#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