mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 09:19:57 +01:00
18 lines
253 B
C++
18 lines
253 B
C++
#pragma once
|
|
|
|
#include "TextEditor.h"
|
|
#include "window_base.h"
|
|
|
|
class CodeEditor : public WindowBase
|
|
{
|
|
public:
|
|
CodeEditor();
|
|
|
|
virtual void Draw() override;
|
|
|
|
void Initialize();
|
|
private:
|
|
TextEditor mEditor;
|
|
std::string mFileToEdit;
|
|
};
|