these 2 files weren't really needed
[supertux.git] / src / scripting / sound.h
1 #ifndef __SOUND_H__
2 #define __SOUND_H__
3
4 namespace Scripting
5 {
6
7 class Sound
8 {
9 public:
10     void play_music(const std::string& musicfile);
11     void play_sound(const std::string& soundfile);
12
13 #ifndef SCRIPTING_API
14     Sound();
15     ~Sound();
16 #endif
17 };
18
19 }
20
21 #endif
22