Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
10 lines
183 B
C#
10 lines
183 B
C#
using System.Collections;
|
|
|
|
namespace Content.Server.GameObjects.EntitySystems.JobQueues
|
|
{
|
|
public interface IJob
|
|
{
|
|
JobStatus Status { get; }
|
|
void Run();
|
|
}
|
|
} |