1. Scrolling and click to set the cursor works. 2. GUI now uses Brass Mono as the font. 3. A lot of stability and other updates.
19 lines
312 B
C++
19 lines
312 B
C++
/*
|
|
* GUIRenderer - ImGui-based renderer for GUI mode
|
|
*/
|
|
#ifndef KTE_GUI_RENDERER_H
|
|
#define KTE_GUI_RENDERER_H
|
|
|
|
#include "Renderer.h"
|
|
|
|
class GUIRenderer : public Renderer {
|
|
public:
|
|
GUIRenderer() = default;
|
|
|
|
~GUIRenderer() override = default;
|
|
|
|
void Draw(Editor &ed) override;
|
|
};
|
|
|
|
#endif // KTE_GUI_RENDERER_H
|