Delta-v/Content.Server/GameObjects/EntitySystems/JobQueues/IJob.cs

8 lines
156 B
C#

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