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