This commit is contained in:
Nishi 2026-05-25 12:39:31 +09:00
commit 8e4fd2976e
4 changed files with 17 additions and 0 deletions

View file

@ -5,6 +5,7 @@ namespace fishbone {
class Client;
};
#include <fishbone/machdep.h>
#include <fishbone/sound.h>
namespace fishbone {

View file

@ -0,0 +1,6 @@
#ifndef __FISHBONE_MACHDEP_H__
#define __FISHBONE_MACHDEP_H__
#include <vector>
#endif

View file

@ -5,8 +5,14 @@ namespace fishbone {
class Mixer;
};
#include <fishbone/machdep.h>
#include <fishbone/sound.h>
namespace fishbone {
class Mixer {
public:
std::vector<fishbone::SoundLoader*> loaders;
std::vector<fishbone::Sound*> sounds;
};
}; // namespace fishbone

View file

@ -4,8 +4,10 @@
namespace fishbone {
class SoundDriver;
class SoundLoader;
class Sound;
}; // namespace fishbone
#include <fishbone/machdep.h>
#include <fishbone/mixer.h>
namespace fishbone {
@ -14,6 +16,8 @@ namespace fishbone {
};
class SoundLoader {
};
class Sound {
};
}; // namespace fishbone
#endif