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