ISharedAdminLogManager.cs 261 B

12345678910
  1. using Content.Shared.Database;
  2. namespace Content.Shared.Administration.Logs;
  3. public interface ISharedAdminLogManager
  4. {
  5. void Add(LogType type, LogImpact impact, ref LogStringHandler handler);
  6. void Add(LogType type, ref LogStringHandler handler);
  7. }