fishbowl/engine/include/fishbone/client.h
2026-05-25 12:39:31 +09:00

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