refactor: oscillator "process" method name

This commit is contained in:
2023-09-08 17:00:58 +04:00
parent 4057bf5d42
commit 55242db407
4 changed files with 4 additions and 4 deletions

View File

@@ -31,5 +31,5 @@ class Oscillator {
float GetFreq() { return m_freq; }
void SetFreq(float freq);
void Reset();
float GenerateSample();
float Process();
};