Files
FlaxEngine/Source/Editor/History/IHistoryAction.cs
2021-01-02 14:28:49 +01:00

21 lines
506 B
C#

// Copyright (c) 2012-2021 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();
}
}