forked from MeloNX/MeloNX
18 lines
370 B
C#
18 lines
370 B
C#
using System;
|
|
|
|
namespace Ryujinx.Cpu
|
|
{
|
|
public class DummyDiskCacheLoadState : IDiskCacheLoadState
|
|
{
|
|
#pragma warning disable CS0067 // The event is never used
|
|
/// <inheritdoc/>
|
|
public event Action<LoadState, int, int> StateChanged;
|
|
#pragma warning restore CS0067
|
|
|
|
/// <inheritdoc/>
|
|
public void Cancel()
|
|
{
|
|
}
|
|
}
|
|
}
|