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();
|
||
|
}
|
||
|
}
|