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