Files
crystall-punk-14/Content.Server/GameObjects/EntitySystems/JobQueues/IJob.cs

10 lines
183 B
C#
Raw Normal View History

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