17 lines
222 B
C
17 lines
222 B
C
|
|
#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
|