Files
RobustToolbox/Robust.Shared/Threading/IRobustJob.cs
T

11 lines
210 B
C#

using System.Threading;
namespace Robust.Shared.Threading;
/// <summary>
/// Implement for code that needs to be runnable on a threadpool.
/// </summary>
public interface IRobustJob : IThreadPoolWorkItem
{
}