12 lines
173 B
C++
Executable file
12 lines
173 B
C++
Executable file
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "commoneditor.hpp"
|
|
|
|
class CutsceneEditor : public CommonEditor {
|
|
public:
|
|
CutsceneEditor();
|
|
|
|
void drawUI() override;
|
|
};
|