From f6881f45a983e371cb1003ac5a6987420f8fafeb Mon Sep 17 00:00:00 2001 From: OliBomby Date: Sun, 13 Oct 2024 01:29:35 +0200 Subject: [PATCH] Update IEditorCommand.cs --- osu.Game/Screens/Edit/Commands/IEditorCommand.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/Screens/Edit/Commands/IEditorCommand.cs b/osu.Game/Screens/Edit/Commands/IEditorCommand.cs index da2cd17d6673..8b377d15f217 100644 --- a/osu.Game/Screens/Edit/Commands/IEditorCommand.cs +++ b/osu.Game/Screens/Edit/Commands/IEditorCommand.cs @@ -11,18 +11,18 @@ public interface IEditorCommand /// /// Applies this command to the current state. /// - public void Apply(); + void Apply(); /// /// Creates a command which undoes the change of this command. /// /// The undo command. /// Make sure to call this before calling , as it reads the current state of the object. - public IEditorCommand CreateUndo(); + IEditorCommand CreateUndo(); /// /// Whether this command would not have any meaningful effect if applied to the current state. /// - public virtual bool IsRedundant => false; + bool IsRedundant => false; } }