Files
XRLib/Assets/Scripts/UVC/UI/Commands/DebugLogCommand.cs
2025-06-12 19:25:33 +09:00

21 lines
383 B
C#

using UVC.Log;
namespace UVC.UI.Commands
{
// 간단한 디버그 로그 출력 커맨드
public class DebugLogCommand : ICommand
{
private readonly string _message;
public DebugLogCommand(string message)
{
_message = message;
}
public void Execute()
{
ULog.Debug(_message);
}
}
}