mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-23 04:53:09 +00:00
8 lines
209 B
C#
8 lines
209 B
C#
|
namespace WinformsVisualization.Visualization
|
|||
|
{
|
|||
|
public interface ISpectrumProvider
|
|||
|
{
|
|||
|
bool GetFftData(float[] fftBuffer, object context);
|
|||
|
int GetFftBandIndex(float frequency);
|
|||
|
}
|
|||
|
}
|