0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 06:30:45 -05:00
patcher/Patcher/PatcherUtils/ProgressChangedHandler.cs

14 lines
801 B
C#
Raw Normal View History

2021-08-01 00:36:37 -04:00
namespace PatcherUtils
{
/// <summary>
/// <see cref="WriteProgressHandler(object, int, int, int, string, string[])"/> delegate
/// </summary>
/// <param name="Sender">The object calling the handler</param>
/// <param name="Progress">The current number of items processed</param>
/// <param name="Total">The total number of items</param>
/// <param name="Percent">The percentage of items processed</param>
/// <param name="Message">An optional message to display above the progress bar</param>
/// <param name="AdditionalLineItems">Additional information to display below the progress bar.</param>
public delegate void ProgressChangedHandler(object Sender, int Progress, int Total, int Percent, string Message = "", params LineItem[] AdditionalLineItems);
}