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

23 lines
486 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
namespace HordeServer.Plugins
{
/// <summary>
/// Interface for querying the state of plugins on the server
/// </summary>
public interface IPluginCollection
{
/// <summary>
/// List of available plugins
/// </summary>
IReadOnlyList<IPlugin> Plugins { get; }
/// <summary>
/// List of the enabled plugins
/// </summary>
IReadOnlyList<ILoadedPlugin> LoadedPlugins { get; }
}
}