Lots of updates:

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.
This commit is contained in:
2025-11-29 20:22:24 -08:00
parent 932bc3c504
commit 57bfab633d
56 changed files with 10897 additions and 1522 deletions

View File

@@ -4,12 +4,14 @@
#ifndef KTE_RENDERER_H
#define KTE_RENDERER_H
class Editor;
class Renderer {
public:
virtual ~Renderer() = default;
virtual void Draw(const Editor &ed) = 0;
virtual ~Renderer() = default;
virtual void Draw(Editor &ed) = 0;
};
#endif // KTE_RENDERER_H