fishbowl/engine/include/fishbone/client.h

20 lines
339 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;
};
2026-05-25 12:39:31 +09:00
#include <fishbone/machdep.h>
2026-05-25 07:25:59 +09:00
#include <fishbone/sound.h>
2026-05-29 01:10:45 +09:00
#include <fishbone/window.h>
2026-05-25 07:25:59 +09:00
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-29 14:23:50 +09:00
fishbone::Window window;
2026-05-25 07:25:59 +09:00
};
2026-05-25 12:12:03 +09:00
}; // namespace fishbone
2026-05-25 07:25:59 +09:00
#endif