Files
RobustToolbox/Robust.Shared/CPUJob/JobQueues/IJob.cs
2023-05-15 12:47:09 +10:00

9 lines
137 B
C#

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