Files
kte/TestRenderer.cc
Kyle Isom 8c8e4e59a4 Add TestFrontend documentation and UndoSystem buffer reference update.
- Document `TestFrontend` for programmatic testing, including examples and usage details.
- Add `UpdateBufferReference` to `UndoSystem` to support updating buffer associations.
2025-11-30 02:56:39 -08:00

11 lines
116 B
C++

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