Ryujinx/ARMeilleure/Translation/PTC/IPtcLoadState.cs

10 lines
193 B
C#
Raw Normal View History

2022-12-21 00:25:15 +00:00
using System;
namespace ARMeilleure.Translation.PTC
{
public interface IPtcLoadState
{
event Action<PtcLoadingState, int, int> PtcStateChanged;
void Continue();
}
}