projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
- Implemented a scripted object that can be placed in a level and whose name is
[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