-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskManager.cs
39 lines (35 loc) · 913 Bytes
/
TaskManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace remote_csgo
{
public static class TaskManager
{
public static List<TaskScriptObject> TaskList = new List<TaskScriptObject>();
public static bool RunScript = false;
public static void InsertTask(TaskScriptObject Task) {
TaskList.Add(Task);
}
public static void ClearTasks()
{
TaskList.Clear();
}
public static void RunTaskManager()
{
while (true)
{
if (RunScript)
{
foreach (TaskScriptObject Task in TaskList)
{
Task.DoTask();
}
}
Thread.Sleep(10);
}
}
}
}