14 lines
246 B
C#
14 lines
246 B
C#
![]() |
using UnityEngine;
|
||
|
// ReSharper disable CheckNamespace
|
||
|
|
||
|
namespace Doozy._Examples.Common.Runtime
|
||
|
{
|
||
|
public class PrintToConsole : MonoBehaviour
|
||
|
{
|
||
|
public void DebugLog(string message)
|
||
|
{
|
||
|
Debug.Log(message);
|
||
|
}
|
||
|
}
|
||
|
}
|