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