9 lines
156 B
C#

namespace KeyboardAudioVisualizer.AudioProcessing
{
public interface IAudioProcessor
{
void Initialize();
void Update();
}
}