ceditor/components/Editor.h
2024-12-15 23:53:57 +08:00

12 lines
166 B
C++

#ifndef EDITOR_H
#define EDITOR_H
#include "BaseComponent.h"
#include "TextArea.h"
class Editor : public BaseComponent {
private:
TextArea* textArea;
};
#endif