Added tracking/capturing/restoration of audio playback state and position.

This commit is contained in:
2026-08-08 16:37:55 -04:00
parent c262ee4caa
commit 0942e3e5ad
11 changed files with 92 additions and 15 deletions

View File

@@ -1,6 +1,8 @@
namespace Harmonia.WinUI.Session;
using System.Threading.Tasks;
namespace Harmonia.WinUI.Session;
public interface ISessionRestorer
{
void Restore();
Task RestoreAsync();
}