blob: bd602bf9bf6b7c9f4144d19511f7ece57bd3570f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MAPMUSIC_H
#define MAPMUSIC_H
class dKPMusic {
public:
static bool loadInfo();
static void play(int id);
static void execute();
static void stop();
static void playStarMusic();
};
#endif /* MAPMUSIC_H */
|