aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs
blob: 8e775f0949f7c64b3d30acb0eb7631ab3922f756 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Ryujinx.Cpu.AppleHv
{
    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()
        {
        }
    }
}