// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Modules; namespace FlaxEditor { /// /// Interface for undo action that can modify scene data (actors, scripts, etc.) /// public interface ISceneEditAction { /// /// Marks the scenes edited. /// /// The scene module. void MarkSceneEdited(SceneModule sceneModule); } }