mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-05 09:54:58 +00:00
10 lines
No EOL
193 B
C#
10 lines
No EOL
193 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Translation.PTC
|
|
{
|
|
public interface IPtcLoadState
|
|
{
|
|
event Action<PtcLoadingState, int, int> PtcStateChanged;
|
|
void Continue();
|
|
}
|
|
} |