1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 19:16:47 -06:00
gdkchan fc4b7cba2c
Make PPTC state non-static ()
* Make PPTC state non-static

* DiskCacheLoadState can be null
2023-01-05 00:01:44 +01:00

10 lines
193 B
C#

using System;
namespace ARMeilleure.Translation.PTC
{
public interface IPtcLoadState
{
event Action<PtcLoadingState, int, int> PtcStateChanged;
void Continue();
}
}