Files

18 lines
357 B
C#
Raw Permalink Normal View History

2026-03-10 11:35:30 +09:00
#nullable enable
using UnityEngine;
using UVC.UI.Commands;
namespace UVC.Studio.Command
{
/// <summary>
/// 파일 저장 커맨드
/// </summary>
public class FileSaveCommand : ICommand
{
public void Execute(object? parameter = null)
{
Debug.Log("[FileSaveCommand] 파일 저장 실행");
}
}
}