mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
e2374102ee
Script run by UDBScript are now executed asynchronously
37 lines
632 B
C#
37 lines
632 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CodeImp.DoomBuilder.UDBScript
|
|
{
|
|
class ProgressInfo
|
|
{
|
|
IProgress<int> progress;
|
|
IProgress<string> status;
|
|
IProgress<string> _log;
|
|
|
|
public ProgressInfo(IProgress<int> progress, IProgress<string> status, IProgress<string> log)
|
|
{
|
|
this.progress = progress;
|
|
this.status = status;
|
|
_log = log;
|
|
}
|
|
|
|
public void setProgress(int p)
|
|
{
|
|
progress.Report(p);
|
|
}
|
|
|
|
public void setStatus(string s)
|
|
{
|
|
status.Report(s);
|
|
}
|
|
|
|
public void log(string s)
|
|
{
|
|
_log.Report(s);
|
|
}
|
|
}
|
|
}
|