| 1234567891011121314151617181920212223 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System;
- namespace bs.Editor
- {
- /** @addtogroup Window
- * @{
- */
- /// <summary>
- /// Can be placed on <see cref="EditorWindow"/> class to ensure the editor window uses a local undo/redo stack instead
- /// of the global one.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class)]
- public sealed class UndoRedoLocal : Attribute
- {
- public UndoRedoLocal()
- { }
- }
- /** @} */
- }
|