ict.lixian.three/Assets/Scripts/cxx/MyDebugger.cs

14 lines
233 B
C#

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