Files
XRLib/Assets/Scripts/Studio/Command/EditDeleteCommand.cs
2025-12-19 18:29:22 +09:00

18 lines
347 B
C#

#nullable enable
using UnityEngine;
using UVC.UI.Commands;
namespace UVC.Studio.Command
{
/// <summary>
/// 삭제 커맨드
/// </summary>
public class EditDeleteCommand : ICommand
{
public void Execute(object? parameter = null)
{
Debug.Log("[EditDeleteCommand] 삭제 실행");
}
}
}