mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:58:40 +00:00
fc4b7cba2c
* Make PPTC state non-static * DiskCacheLoadState can be null
10 lines
193 B
C#
10 lines
193 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Translation.PTC
|
|
{
|
|
public interface IPtcLoadState
|
|
{
|
|
event Action<PtcLoadingState, int, int> PtcStateChanged;
|
|
void Continue();
|
|
}
|
|
} |