blob: 1b11ac0b5e2c67d05f4cc3f2b935867a69fcdc24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System;
namespace ARMeilleure.Translation.PTC
{
public interface IPtcLoadState
{
event Action<PtcLoadingState, int, int> PtcStateChanged;
void Continue();
}
}
|