mirror of
https://github.com/DarthAffe/KeyboardAudioVisualizer.git
synced 2025-12-12 15:18:30 +00:00
22 lines
416 B
C#
22 lines
416 B
C#
namespace KeyboardAudioVisualizer.AudioProcessing
|
|
{
|
|
public abstract class AbstractAudioProcessor : IAudioProcessor
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
public abstract void Initialize();
|
|
|
|
public abstract void Update();
|
|
|
|
public virtual void Dispose() { }
|
|
|
|
#endregion
|
|
}
|
|
}
|