18 lines
278 B
C++
18 lines
278 B
C++
#ifndef __FISHBONE_CLIENT_H__
|
|
#define __FISHBONE_CLIENT_H__
|
|
|
|
namespace fishbone {
|
|
class Client;
|
|
};
|
|
|
|
#include <fishbone/machdep.h>
|
|
#include <fishbone/sound.h>
|
|
|
|
namespace fishbone {
|
|
class Client {
|
|
public:
|
|
fishbone::SoundDriver sound;
|
|
};
|
|
}; // namespace fishbone
|
|
|
|
#endif
|