Files
beyond/Assets/Scripts/Utils/DebugLogger.cs
2024-11-20 15:21:28 +01:00

14 lines
247 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DebugLogger : MonoBehaviour
{
// Start is called before the first frame update
public void Log(string log)
{
Debug.Log(log);
}
}