Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer/Plugins/IPluginCollection.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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; }
}
}