Make PPTC state non-static (#4157)

* Make PPTC state non-static

* DiskCacheLoadState can be null
This commit is contained in:
gdkchan
2023-01-04 20:01:44 -03:00
committed by GitHub
parent 08831eecf7
commit fc4b7cba2c
21 changed files with 434 additions and 230 deletions

View File

@ -0,0 +1,10 @@
using System;
namespace ARMeilleure.Translation.PTC
{
public interface IPtcLoadState
{
event Action<PtcLoadingState, int, int> PtcStateChanged;
void Continue();
}
}