IPtcLoadState.cs 193 B

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