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