Refactoring complete. Everything works as before

This commit is contained in:
2026-04-29 16:14:37 +01:00
parent e4bda5f7f6
commit 96b06ffc4e
6 changed files with 608 additions and 550 deletions

View File

@@ -0,0 +1,7 @@
namespace Core.Interfaces
{
public interface IAudioDevice
{
void AddSample(bool isHigh);
}
}