mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-12 07:50:37 +00:00
17 lines
370 B
C#
17 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()
|
|
{
|
|
}
|
|
}
|
|
}
|