Files
kte/TestRenderer.cc
Kyle Isom e4cd4877cc Introduce file picker and GUI configuration with enhancements.
- Add visual file picker for GUI with toggle support.
- Introduce `GUIConfig` class for loading GUI settings from configuration file.
- Refactor window initialization to support dynamic sizing based on configuration.
- Add macOS-specific handling for fullscreen behavior.
- Improve header inclusion order and minor code cleanup.
2025-11-30 18:35:12 -08:00

10 lines
96 B
C++

#include "TestRenderer.h"
void
TestRenderer::Draw(Editor &ed)
{
(void) ed;
++draw_count_;
}