// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEditor.History;
namespace FlaxEditor
{
///
/// Interface for actions.
///
///
public interface IUndoAction : IHistoryAction
{
///
/// Performs this action.
///
void Do();
///
/// Undoes this action.
///
void Undo();
}
}