Files
OldThink/Content.Shared/Administration/Logs/ISharedAdminLogManager.cs

11 lines
261 B
C#
Raw Permalink Normal View History

using Content.Shared.Database;
namespace Content.Shared.Administration.Logs;
public interface ISharedAdminLogManager
{
void Add(LogType type, LogImpact impact, ref LogStringHandler handler);
void Add(LogType type, ref LogStringHandler handler);
}