Interface over passing ticks

This commit is contained in:
2025-07-04 09:11:05 -07:00
parent 93598255c0
commit 8f7fd02ba8
17 changed files with 124 additions and 105 deletions

View File

@ -4,6 +4,8 @@ public interface ICompare
{
void Tick();
long Ticks { get; }
int? CurrentTick { get; }
void ConstructProgressBar(int maxTicks, string message);
}