mirror of
https://github.com/MeowLynxSea/ceditor.git
synced 2025-07-09 10:54:37 +00:00
12 lines
166 B
C++
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 |