Log.cs 173 B

12345678910
  1. using System;
  2. namespace Mirror.Weaver
  3. {
  4. public static class Log
  5. {
  6. public static Action<string> Warning;
  7. public static Action<string> Error;
  8. }
  9. }