more and more deps
This commit is contained in:
parent
51b3b89e1c
commit
03bc51e5b4
11 changed files with 89 additions and 3 deletions
17
engine/include/fishbone/client.h
Normal file
17
engine/include/fishbone/client.h
Normal 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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
13
engine/include/fishbone/mixer.h
Normal file
13
engine/include/fishbone/mixer.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef __FISHBONE_MIXER_H__
|
||||
#define __FISHBONE_MIXER_H__
|
||||
|
||||
namespace fishbone {
|
||||
class Mixer;
|
||||
};
|
||||
|
||||
namespace fishbone {
|
||||
class Mixer {
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
19
engine/include/fishbone/sound.h
Normal file
19
engine/include/fishbone/sound.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue