Files
FlaxEngine/Source/Editor/History/IHistoryAction.cs

21 lines
496 B
C#

// Copyright (c) Wojciech Figat. All rights reserved.
namespace FlaxEditor.History
{
/// <summary>
/// Interface for <see cref="HistoryStack"/> actions.
/// </summary>
public interface IHistoryAction
{
/// <summary>
/// Name or key of performed action
/// </summary>
string ActionString { get; }
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
void Dispose();
}
}