QTfrontend/SDLs.h
changeset 1223 41d7283934c1
parent 1066 1f1b3686a2b0
child 1684 b3f4ec08f0a4
equal deleted inserted replaced
1222:bc94a25d867a 1223:41d7283934c1
    19 #ifndef SDLS_H
    19 #ifndef SDLS_H
    20 #define SDLS_H
    20 #define SDLS_H
    21 
    21 
    22 #include <QStringList>
    22 #include <QStringList>
    23 
    23 
       
    24 #include "SDL_mixer.h"
       
    25 
       
    26 
    24 class SDLInteraction : public QObject
    27 class SDLInteraction : public QObject
    25 {
    28 {
    26 	Q_OBJECT
    29 	Q_OBJECT
    27 
    30 
    28 	public:
    31 private:
       
    32 	Mix_Music * music;
       
    33 
       
    34 public:
    29 	SDLInteraction();
    35 	SDLInteraction();
    30 	~SDLInteraction();
    36 	~SDLInteraction();
    31 	QStringList getResolutions() const;
    37 	QStringList getResolutions() const;
       
    38 	void StartMusic();
       
    39 	void StopMusic();
    32 };
    40 };
    33 
    41 
    34 #endif
    42 #endif