wip: refactor out application methods

This commit is contained in:
2023-08-07 15:01:35 +04:00
parent e3825b341d
commit 56b68bc963
4 changed files with 102 additions and 80 deletions

View File

@@ -15,9 +15,11 @@ private:
Note* m_current_note;
Renderer m_renderer;
std::size_t detect_note_pressed(Note* note);
void init_gui();
void init_synth();
void init_audio();
void update_on_note_input();
void play_buffered_audio();
void fill_audio_buffer();
public:
Application(/* args */);

View File

@@ -10,12 +10,6 @@ public:
void Draw();
};
Renderer::Renderer(/* args */)
{
}
Renderer::~Renderer()
{
}