Files
RobustToolbox/Robust.Shared/Threading/IRobustJob.cs
2024-08-23 14:33:36 +10:00

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();
}