Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
372 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using HordeServer.Utilities;
namespace HordeServer.Acls
{
/// <summary>
/// Interface which can be implemented by classes that mutate the default ACL
/// </summary>
public interface IDefaultAclModifier
{
/// <summary>
/// Modifies the default ACL
/// </summary>
void Apply(DefaultAclBuilder builder);
}
}