h
This commit is contained in:
parent
897e11891d
commit
8e4fd2976e
4 changed files with 17 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ namespace fishbone {
|
|||
class Client;
|
||||
};
|
||||
|
||||
#include <fishbone/machdep.h>
|
||||
#include <fishbone/sound.h>
|
||||
|
||||
namespace fishbone {
|
||||
|
|
|
|||
6
engine/include/fishbone/machdep.h
Normal file
6
engine/include/fishbone/machdep.h
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef __FISHBONE_MACHDEP_H__
|
||||
#define __FISHBONE_MACHDEP_H__
|
||||
|
||||
#include <vector>
|
||||
|
||||
#endif
|
||||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue