fishbowl/engine/include/fishbone/client.h
2026-06-06 22:30:58 +09:00

31 lines
586 B
C++

#ifndef __FISHBONE_CLIENT_H__
#define __FISHBONE_CLIENT_H__
#include <fishbone/pre.h>
namespace fishbone {
class Client;
};
#include <fishbone/sound.h>
#include <fishbone/window.h>
#include <fishbone/mixer.h>
#include <fishbone/draw.h>
#include <fishbone/base.h>
namespace fishbone {
class Client : public fishbone::Base {
public:
Client(fishbone::StringArrayMap param);
~Client();
bool step();
fishbone::Window* window;
fishbone::SoundDriver* sounddrv;
fishbone::Mixer* mixer;
fishbone::Renderer* renderer;
};
}; // namespace fishbone
#endif