mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
12 lines
200 B
C#
12 lines
200 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Plugins.JNGame
|
|||
|
{
|
|||
|
public static class NSystem
|
|||
|
{
|
|||
|
public static void Log(string log)
|
|||
|
{
|
|||
|
Debug.Log($"[JNGame] {log}");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|