mirror of
https://github.com/DarthAffe/KeyboardAudioVisualizer.git
synced 2025-12-13 07:38:44 +00:00
9 lines
156 B
C#
9 lines
156 B
C#
namespace KeyboardAudioVisualizer.AudioProcessing
|
|
{
|
|
public interface IAudioProcessor
|
|
{
|
|
void Initialize();
|
|
void Update();
|
|
}
|
|
}
|