mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
17 lines
363 B
C#
17 lines
363 B
C#
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
|
|
}
|
|
}
|