mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Remove useless container
This commit is contained in:
@ -32,7 +32,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
|
||||
protected DragBox DragBox { get; private set; }
|
||||
|
||||
private SelectionBlueprintContainer selectionBlueprints;
|
||||
private Container<SelectionBlueprint> selectionBlueprints;
|
||||
|
||||
private SelectionHandler selectionHandler;
|
||||
|
||||
@ -83,7 +83,8 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
};
|
||||
}
|
||||
|
||||
protected virtual SelectionBlueprintContainer CreateSelectionBlueprintContainer() => new SelectionBlueprintContainer { RelativeSizeAxes = Axes.Both };
|
||||
protected virtual Container<SelectionBlueprint> CreateSelectionBlueprintContainer() =>
|
||||
new Container<SelectionBlueprint> { RelativeSizeAxes = Axes.Both };
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
@ -430,10 +431,5 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
beatmap.HitObjectRemoved -= removeBlueprintFor;
|
||||
}
|
||||
}
|
||||
|
||||
protected class SelectionBlueprintContainer : Container<SelectionBlueprint>
|
||||
{
|
||||
//todo: remove
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user