Files
Liberium-1.8-Source-Code/Server.Helper.Tasks/Task.cs
T

17 lines
228 B
C#
Raw Normal View History

2026-08-27 11:21:58 -06:00
using System.Collections.Generic;
namespace Server.Helper.Tasks;
public class Task
{
public object[] task;
public List<string> TasksRunsed;
public long Runs;
public string Name;
public bool RunOnce;
}