fishbowl/engine/include/fishbone/client.h

18 lines
278 B
C
Raw Permalink Normal View History

2026-05-25 07:25:59 +09:00
#ifndef __FISHBONE_CLIENT_H__
#define __FISHBONE_CLIENT_H__
namespace fishbone {
class Client;
};
2026-05-25 12:39:31 +09:00
#include <fishbone/machdep.h>
2026-05-25 07:25:59 +09:00
#include <fishbone/sound.h>
namespace fishbone {
class Client {
2026-05-25 12:12:03 +09:00
public:
2026-05-25 07:25:59 +09:00
fishbone::SoundDriver sound;
};
2026-05-25 12:12:03 +09:00
}; // namespace fishbone
2026-05-25 07:25:59 +09:00
#endif