projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
66ac95a4bcd2fb1ae8fe89ab9981d38dee22446d
[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