fishbowl/engine/include/fishbone/client.h

17 lines
222 B
C
Raw Normal View History

2026-05-25 07:25:59 +09:00
#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