21 lines
506 B
C#
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();
|
|
}
|
|
}
|