mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-28 02:57:52 +03:00
* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
8 lines
156 B
C#
8 lines
156 B
C#
namespace Content.Server.GameObjects.EntitySystems.JobQueues
|
|
{
|
|
public interface IJob
|
|
{
|
|
JobStatus Status { get; }
|
|
void Run();
|
|
}
|
|
} |