forked from MeloNX/MeloNX
15 lines
268 B
C#
15 lines
268 B
C#
using System;
|
|
|
|
namespace Ryujinx.Cpu
|
|
{
|
|
class DiskCacheLoadState : IDiskCacheLoadState
|
|
{
|
|
/// <inheritdoc/>
|
|
public event Action<LoadState, int, int> StateChanged;
|
|
|
|
/// <inheritdoc/>
|
|
public void Cancel()
|
|
{
|
|
}
|
|
}
|
|
} |