mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
rename customisation container class
This commit is contained in:
@ -16,11 +16,11 @@ using osuTK.Graphics;
|
||||
|
||||
namespace osu.Game.Overlays.Mods
|
||||
{
|
||||
public class CModSettingsContainer : Container
|
||||
public class ModCustomisationContainer : Container
|
||||
{
|
||||
private readonly FillFlowContainer<ModControlSection> modSettingsContent;
|
||||
|
||||
public CModSettingsContainer()
|
||||
public ModCustomisationContainer()
|
||||
{
|
||||
Children = new Drawable[]
|
||||
{
|
@ -44,7 +44,7 @@ namespace osu.Game.Overlays.Mods
|
||||
|
||||
protected readonly FillFlowContainer<ModSection> ModSectionsContainer;
|
||||
|
||||
protected readonly CModSettingsContainer ModSettingsContainer;
|
||||
protected readonly ModCustomisationContainer ModSettingsContainer;
|
||||
|
||||
public readonly Bindable<IReadOnlyList<Mod>> SelectedMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
|
||||
|
||||
@ -281,7 +281,7 @@ namespace osu.Game.Overlays.Mods
|
||||
},
|
||||
},
|
||||
},
|
||||
ModSettingsContainer = new CModSettingsContainer
|
||||
ModSettingsContainer = new ModCustomisationContainer
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Anchor = Anchor.BottomRight,
|
||||
|
Reference in New Issue
Block a user