Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Shared/Server/IDowntimeService.cs
2025-05-18 13:04:45 +08:00

19 lines
368 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace HordeServer.Server
{
/// <summary>
/// Interface for a service which keeps track of whether we're during downtime
/// </summary>
public interface IDowntimeService
{
/// <summary>
/// Returns true if downtime is currently active
/// </summary>
public bool IsDowntimeActive
{
get;
}
}
}