projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a0589c7f4d6439563c62ad4397e9fad4cd9b7ea3
[supertux.git]
/
src
/
scripting
/
sound.cpp
1
#include <config.h>
2
3
#include <string>
4
#include <stdio.h>
5
#include "sound.h"
6
7
#define NOIMPL printf("%s not implemented.\n", __PRETTY_FUNCTION__);
8
9
namespace Scripting
10
{
11
12
Sound::Sound()
13
{}
14
15
Sound::~Sound()
16
{}
17
18
void
19
Sound::play_music(const std::string& )
20
{
21
NOIMPL;
22
}
23
24
void
25
Sound::play_sound(const std::string& )
26
{
27
NOIMPL;
28
}
29
}