19 lines
395 B
C#
19 lines
395 B
C#
|
|
#nullable enable
|
||
|
|
using UVC.UI.Commands;
|
||
|
|
using UVC.Studio.Manager;
|
||
|
|
|
||
|
|
namespace UVC.Studio.Command
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 되돌리기(Undo) 커맨드
|
||
|
|
/// UndoRedoManager의 Undo 기능 호출
|
||
|
|
/// </summary>
|
||
|
|
public class EditUndoCommand : ICommand
|
||
|
|
{
|
||
|
|
public void Execute(object? parameter = null)
|
||
|
|
{
|
||
|
|
UndoRedoManager.Instance.Undo();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|