fishbowl/engine/include/fishbone/client.h
2026-05-29 14:23:54 +09:00

20 lines
339 B
C++

#ifndef __FISHBONE_CLIENT_H__
#define __FISHBONE_CLIENT_H__
namespace fishbone {
class Client;
};
#include <fishbone/machdep.h>
#include <fishbone/sound.h>
#include <fishbone/window.h>
namespace fishbone {
class Client {
public:
fishbone::SoundDriver sound;
fishbone::Window window;
};
}; // namespace fishbone
#endif