mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
12 lines
208 B
C#
12 lines
208 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
|
|
{
|
|
void Execute();
|
|
}
|