fishbowl/engine/include/fishbone/client.h
2026-05-25 07:25:59 +09:00

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