1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 13:27:23 +08:00

Fix code style

This commit is contained in:
Derrick Timmermans 2022-11-27 21:48:44 +01:00
parent 70c320b2e8
commit 93ba84e5ff
No known key found for this signature in database
GPG Key ID: B1771434E9B3282C
2 changed files with 3 additions and 3 deletions

View File

@ -218,7 +218,7 @@ namespace osu.Game.Rulesets.Edit
/// <summary>
/// Construct a relevant blueprint container. This will manage hitobject selection/placement input handling and display logic.
/// </summary>
protected virtual ComposeBlueprintContainer CreateBlueprintContainer() => new ComposeBlueprintContainer( this, Ruleset);
protected virtual ComposeBlueprintContainer CreateBlueprintContainer() => new ComposeBlueprintContainer(this, Ruleset);
/// <summary>
/// Construct a drawable ruleset for the provided ruleset.

View File

@ -7,9 +7,9 @@ using osu.Framework.Graphics.Containers;
namespace osu.Game.Rulesets.UI
{
public class DrawableRulesetDependenciesProvidingContainer : Container
public partial class DrawableRulesetDependenciesProvidingContainer : Container
{
private Ruleset ruleset;
private readonly Ruleset ruleset;
private DrawableRulesetDependencies rulesetDependencies = null!;