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

17 lines
363 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
using Content.Shared.Database;
namespace Content.Shared.Administration.Logs;
public abstract class SharedAdminLogSystem : EntitySystem
{
public virtual void Add(LogType type, LogImpact impact, ref LogStringHandler handler)
{
// noop
}
public virtual void Add(LogType type, ref LogStringHandler handler)
{
// noop
}
}