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