Files
Liberium-1.8-Source-Code/Server.Helper.Tasks/Task.cs
T
2026-08-27 11:21:58 -06:00

17 lines
228 B
C#

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;
}