com.alicizax.unity.tuyoogam.../Samples~/Test Sample/Runtime/TestLogger.cs

8 lines
190 B
C#
Raw Normal View History

2025-01-09 11:31:04 +08:00

public static class TestLogger
{
public static void Log(System.Object instance, string message)
{
UnityEngine.Debug.Log($"[{instance.GetType().Name}] {message}");
}
}