mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
12 lines
302 B
C#
12 lines
302 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Robust.Server.ServerStatus
|
|
{
|
|
[Obsolete("Use async handlers")]
|
|
public delegate bool StatusHostHandler(
|
|
IStatusHandlerContext context);
|
|
public delegate Task<bool> StatusHostHandlerAsync(
|
|
IStatusHandlerContext context);
|
|
}
|