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