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

19 lines
424 B
C#
Raw Normal View History

using System.Globalization;
2021-11-28 14:56:53 +01:00
using Content.Shared.Database;
using Robust.Shared.GameObjects;
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
}
}