19 lines
299 B
C#
19 lines
299 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public static class BDebug
|
||
|
{
|
||
|
public static void Log(object obj )
|
||
|
{
|
||
|
#if UNITY_EDITOR
|
||
|
Debug.Log(obj);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
public static void LogError( object obj)
|
||
|
{
|
||
|
Debug.LogError(obj);
|
||
|
}
|
||
|
}
|