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