OldBlueWater/BlueWater/Assets/Doozy/_Examples/Common/Runtime/Scripts/PrintToConsole.cs

14 lines
246 B
C#
Raw Normal View History

using UnityEngine;
// ReSharper disable CheckNamespace
namespace Doozy._Examples.Common.Runtime
{
public class PrintToConsole : MonoBehaviour
{
public void DebugLog(string message)
{
Debug.Log(message);
}
}
}