using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace ToneTuneToolkit
{
///
/// Debug专用
///
public class TTTDebug : MonoBehaviour
{
public static void Warning(string text)
{
Debug.Log(@"" + "[TTT Warning] >" + "" + text);
}
}
}