PC-20230316NUNE\Administrator 68c4d5e811 提交帧同步案例
2024-01-26 19:15:07 +08:00

12 lines
200 B
C#

using UnityEngine;
namespace Plugins.JNGame
{
public static class NSystem
{
public static void Log(string log)
{
Debug.Log($"[JNGame] {log}");
}
}
}