This commit is contained in:
2023-08-08 17:05:08 +04:00
parent cadeeb323d
commit a1fef25838
6 changed files with 63 additions and 16 deletions

View File

@@ -1,13 +1,15 @@
#pragma once
#include "Synth.h"
#include "SynthGuiState.h"
class Renderer
{
private:
/* data */
void DrawUi(Synth & synth, const SynthGuiState & synthGui);
void DrawSignal(Synth & synth, const SynthGuiState & synthGui);
public:
Renderer(/* args */);
~Renderer();
void Draw();
void Draw(Synth& synth, const SynthGuiState & synthGui);
};