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