using UnityEngine; namespace GFGGame { public static class LogHelper { public static void LogEditor(string content) { #if UNITY_EDITOR Debug.Log(content); #endif } } }