wip: private method naming convention

This commit is contained in:
2023-09-10 01:31:48 +04:00
parent 3af5c344f2
commit e9391c2e7b
2 changed files with 15 additions and 15 deletions

View File

@@ -13,11 +13,11 @@ class Application {
int m_sound_played_count;
Note* m_current_note;
Renderer m_renderer;
bool detect_note_pressed(Note* note);
void init_synth();
void init_audio();
void update_on_note_input();
void play_buffered_audio();
bool DetectNotePressed(Note* note);
void InitSynth();
void InitAudio();
void UpdateOnNoteInput();
void PlayBufferedAudio();
public:
Application(/* args */);