- Document `TestFrontend` for programmatic testing, including examples and usage details. - Add `UpdateBufferReference` to `UndoSystem` to support updating buffer associations.
11 lines
116 B
C++
11 lines
116 B
C++
#include "TestRenderer.h"
|
|
#include "Editor.h"
|
|
|
|
|
|
void
|
|
TestRenderer::Draw(Editor &ed)
|
|
{
|
|
(void) ed;
|
|
++draw_count_;
|
|
}
|