1
0

SharedAdminLogSystem.cs 363 B

12345678910111213141516
  1. using Content.Shared.Database;
  2. namespace Content.Shared.Administration.Logs;
  3. public abstract class SharedAdminLogSystem : EntitySystem
  4. {
  5. public virtual void Add(LogType type, LogImpact impact, ref LogStringHandler handler)
  6. {
  7. // noop
  8. }
  9. public virtual void Add(LogType type, ref LogStringHandler handler)
  10. {
  11. // noop
  12. }
  13. }