1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-10-19 10:41:45 +01:00
Ryujinx/ARMeilleure/Translation/PTC/IPtcLoadState.cs

10 lines
193 B
C#
Raw Normal View History

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