mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
11 lines
210 B
C#
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
|
|
{
|
|
}
|