Ryujinx/ARMeilleure/Translation/PTC/IPtcLoadState.cs
2023-01-04 19:33:03 -03:00

10 lines
No EOL
193 B
C#

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