13 lines
235 B
C++
Executable file
13 lines
235 B
C++
Executable file
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "commoneditor.hpp"
|
|
|
|
class CutsceneEditor : public CommonEditor {
|
|
public:
|
|
CutsceneEditor();
|
|
|
|
void renderEditor(GFXCommandBuffer* command_buffer) override;
|
|
void drawUI() override;
|
|
};
|