equal
deleted
inserted
replaced
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 |