您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 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. }