mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
24 lines
404 B
C++
24 lines
404 B
C++
#pragma once
|
|
|
|
#include "window_base.h"
|
|
#include "i_story_manager.h"
|
|
#include "gui.h"
|
|
|
|
class EmulatorWindow : public WindowBase
|
|
{
|
|
public:
|
|
EmulatorWindow(IStoryManager &proj);
|
|
|
|
void Initialize();
|
|
virtual void Draw() override;
|
|
|
|
void ClearImage();
|
|
void SetImage(const std::string &image);
|
|
|
|
private:
|
|
IStoryManager &m_story;
|
|
Gui::Image m_image;
|
|
std::string m_imageFileName;
|
|
};
|
|
|