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