This commit is contained in:
Nishi 2026-06-01 13:50:35 +09:00
commit 3072248158
19 changed files with 193 additions and 36 deletions

View file

@ -1,19 +1,29 @@
#ifndef __FISHBONE_CLIENT_H__
#define __FISHBONE_CLIENT_H__
#include <fishbone/pre.h>
namespace fishbone {
class Client;
};
#include <fishbone/machdep.h>
#include <fishbone/sound.h>
#include <fishbone/window.h>
#include <fishbone/mixer.h>
#include <fishbone/draw.h>
namespace fishbone {
class Client {
public:
fishbone::SoundDriver sound;
fishbone::Window window;
Client(std::unordered_map<std::string, std::vector<std::string>> param);
~Client();
bool step();
fishbone::Window* window;
fishbone::SoundDriver* sounddrv;
fishbone::Mixer* mixer;
fishbone::Renderer* renderer;
};
}; // namespace fishbone