NetDebug.cs 329 B

12345678910111213141516
  1. #if DEBUG && !UNITY_WP_8_1 && !UNITY_WSA_8_1
  2. using System;
  3. namespace FlyingWormConsole3.LiteNetLib
  4. {
  5. public interface INetLogger
  6. {
  7. void WriteNet(ConsoleColor color, string str, params object[] args);
  8. }
  9. public static class NetDebug
  10. {
  11. public static INetLogger Logger = null;
  12. }
  13. }
  14. #endif