ict.lixian.three/Assets/Scripts/kdl/MyDebuggerHuman.cs

14 lines
238 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MyDebuggerHuman : MonoBehaviour
{
public static string msg;
public static void Log(string message)
{
msg = message;
}
}