Files
tbd-station-14/Content.Server/CPUJob/JobQueues/IJob.cs
2021-06-09 22:19:39 +02:00

9 lines
138 B
C#

namespace Content.Server.CPUJob.JobQueues
{
public interface IJob
{
JobStatus Status { get; }
void Run();
}
}