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