mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 22:49:01 +03:00
11 lines
261 B
C#
11 lines
261 B
C#
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);
|
|
}
|