您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19 行
282 B

  1. using System;
  2. using UnityEngine;
  3. namespace Boomlagoon.JSON
  4. {
  5. internal static class JSONLogger
  6. {
  7. public static void Log(string str)
  8. {
  9. UnityEngine.Debug.Log(str);
  10. }
  11. public static void Error(string str)
  12. {
  13. UnityEngine.Debug.LogError(str);
  14. }
  15. }
  16. }