#nullable enable using UnityEngine; using UVC.UI.Commands; namespace UVC.Studio.Command { /// /// 다른 이름으로 저장 커맨드 /// public class FileSaveAsCommand : ICommand { public void Execute(object? parameter = null) { Debug.Log("[FileSaveAsCommand] 다른 이름으로 저장 실행"); } } }