mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
9 lines
83 B
C++
9 lines
83 B
C++
#pragma once
|
|
|
|
class Synth
|
|
{
|
|
public:
|
|
virtual float getValue(float, float) = 0;
|
|
};
|
|
|