Skip to content
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.

Commit

Permalink
Updated the example
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Dec 6, 2019
1 parent fda0ce9 commit b3a21f9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions OMODFramework.Example/Progress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ public void Init(long totalSize, bool compressing)
_compressing = compressing;
}

public void Dispose()
{
Console.WriteLine(_compressing
? $"Compressing finished."
: $"Decompressing finished.");
}

public void SetProgress(long inSize, long outSize)
{
Console.WriteLine(_compressing
Expand Down

0 comments on commit b3a21f9

Please sign in to comment.