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