Files
FlaxEngine/Source/Editor/History/IHistoryAction.cs
2023-01-10 15:29:37 +01:00

21 lines
506 B
C#

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