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();
|
||
|
|
}
|
||
|
|
}
|