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

10 lines
183 B
C#

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