Files
EnglewoodLAB/Assets/Scripts/Studio/Command/FileSaveCommand.cs

18 lines
357 B
C#

#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] 파일 저장 실행");
}
}
}