23 lines
299 B
C#
23 lines
299 B
C#
using System.Threading;
|
|
|
|
public class MegaTaskInfo
|
|
{
|
|
public string name;
|
|
|
|
public volatile int start;
|
|
|
|
public volatile int end;
|
|
|
|
public AutoResetEvent pauseevent;
|
|
|
|
public Thread _thread;
|
|
|
|
public MegaModContext modcontext;
|
|
|
|
public int index;
|
|
|
|
public int cores;
|
|
|
|
public MegaJobType jobtype;
|
|
}
|