using System;
namespace Ryujinx.Cpu
{
///
/// Disk cache load state report and management interface.
///
public interface IDiskCacheLoadState
{
///
/// Event used to report the cache load progress.
///
event Action StateChanged;
///
/// Cancels the disk cache load process.
///
void Cancel();
}
}