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