mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 01:15:14 +01:00
21 lines
355 B
C++
21 lines
355 B
C++
#pragma once
|
|
|
|
#include "i_story_manager.h"
|
|
#include "window_base.h"
|
|
|
|
class ResourcesWindow : public WindowBase
|
|
{
|
|
public:
|
|
ResourcesWindow(IStoryManager &project);
|
|
~ResourcesWindow();
|
|
virtual void Draw() override;
|
|
|
|
private:
|
|
IStoryManager &m_story;
|
|
|
|
bool m_showImportDialog{false};
|
|
bool m_soundFile{false};
|
|
|
|
void ChooseFile();
|
|
};
|