// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved. using FlaxEngine; namespace FlaxEditor.States { /// /// In this state editor is reloading user scripts. /// /// [HideInEditor] public sealed class ReloadingScriptsState : EditorState { /// public override string Status => "Reloading scripts..."; internal ReloadingScriptsState(Editor editor) : base(editor) { } } }