mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 18:21:13 +02:00
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();
|
|
}
|
|
} |