more and more deps

This commit is contained in:
Nishi 2026-05-25 07:25:59 +09:00
commit 03bc51e5b4
11 changed files with 89 additions and 3 deletions

View file

@ -0,0 +1,17 @@
#ifndef __FISHBONE_CLIENT_H__
#define __FISHBONE_CLIENT_H__
namespace fishbone {
class Client;
};
#include <fishbone/sound.h>
namespace fishbone {
class Client {
public:
fishbone::SoundDriver sound;
};
};
#endif

View file

@ -1,4 +1,8 @@
#ifndef __FISHBONE_FOUNDATION_H__
#define __FISHBONE_FOUNDATION_H__
#include <fishbone/client.h>
#include <fishbone/sound.h>
#include <fishbone/mixer.h>
#endif

View file

@ -0,0 +1,13 @@
#ifndef __FISHBONE_MIXER_H__
#define __FISHBONE_MIXER_H__
namespace fishbone {
class Mixer;
};
namespace fishbone {
class Mixer {
};
};
#endif

View file

@ -0,0 +1,19 @@
#ifndef __FISHBONE_SOUND_H__
#define __FISHBONE_SOUND_H__
namespace fishbone {
class SoundDriver;
class SoundLoader;
};
#include <fishbone/mixer.h>
namespace fishbone {
class SoundDriver {
fishbone::Mixer mixer;
};
class SoundLoader {
};
};
#endif