diff options
author | Treeki <treeki@gmail.com> | 2012-11-22 23:12:30 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-11-22 23:12:30 +0100 |
commit | 996c43b8e327a2d63f99c4f5a2d820dbaf1be8f3 (patch) | |
tree | f2b2b38cff295beaa4244f5605f84fac616812f4 /src/koopatlas/mapmusic.h | |
parent | 53880784ce5dced94bd3d98a240bcf84041c3ad5 (diff) | |
download | kamek-996c43b8e327a2d63f99c4f5a2d820dbaf1be8f3.tar.gz kamek-996c43b8e327a2d63f99c4f5a2d820dbaf1be8f3.zip |
new map music system
Diffstat (limited to '')
-rw-r--r-- | src/koopatlas/mapmusic.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/koopatlas/mapmusic.h b/src/koopatlas/mapmusic.h new file mode 100644 index 0000000..785f870 --- /dev/null +++ b/src/koopatlas/mapmusic.h @@ -0,0 +1,11 @@ +#ifndef MAPMUSIC_H +#define MAPMUSIC_H + +class dKPMusic { + public: + static void play(int id); + static void execute(); + static void stop(); +}; + +#endif /* MAPMUSIC_H */ |