Files
XRLib/Assets/Scripts/Studio/Command/FileNewCommand.cs
2025-12-19 18:29:22 +09:00

18 lines
363 B
C#

#nullable enable
using UnityEngine;
using UVC.UI.Commands;
namespace UVC.Studio.Command
{
/// <summary>
/// 새 파일 생성 커맨드
/// </summary>
public class FileNewCommand : ICommand
{
public void Execute(object? parameter = null)
{
Debug.Log("[FileNewCommand] 새 파일 생성 실행");
}
}
}