1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 13:22:55 +08:00

PlayerGroup -> PlayerSettingsGroup

This commit is contained in:
TocoToucan 2018-01-15 20:52:52 +03:00
parent 6e35484160
commit a81f32a388
9 changed files with 12 additions and 12 deletions

View File

@ -42,7 +42,7 @@ namespace osu.Game.Tests.Visual
}));
}
private class ExampleContainer : PlayerGroup
private class ExampleContainer : PlayerSettingsGroup
{
protected override string Title => @"example";
}

View File

@ -6,7 +6,7 @@ using osu.Game.Screens.Play.PlayerSettings;
namespace osu.Game.Rulesets.Edit
{
public class ToolboxGroup : PlayerGroup
public class ToolboxGroup : PlayerSettingsGroup
{
protected override string Title => "toolbox";

View File

@ -26,7 +26,7 @@ namespace osu.Game.Screens.Play.HUD
AlwaysPresent = true;
RelativeSizeAxes = Axes.Both;
Child = new FillFlowContainer<PlayerGroup>
Child = new FillFlowContainer<PlayerSettingsGroup>
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
@ -34,7 +34,7 @@ namespace osu.Game.Screens.Play.HUD
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 20),
Margin = new MarginPadding { Top = 100, Right = 10 },
Children = new PlayerGroup[]
Children = new PlayerSettingsGroup[]
{
//CollectionSettings = new CollectionSettings(),
//DiscussionSettings = new DiscussionSettings(),

View File

@ -9,7 +9,7 @@ using osu.Game.Overlays.Music;
namespace osu.Game.Screens.Play.PlayerSettings
{
public class CollectionSettings : PlayerGroup
public class CollectionSettings : PlayerSettingsGroup
{
protected override string Title => @"collections";

View File

@ -8,7 +8,7 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Screens.Play.PlayerSettings
{
public class DiscussionSettings : PlayerGroup
public class DiscussionSettings : PlayerSettingsGroup
{
protected override string Title => @"discussions";

View File

@ -9,7 +9,7 @@ using osu.Game.Graphics.Sprites;
namespace osu.Game.Screens.Play.PlayerSettings
{
public class PlaybackSettings : PlayerGroup
public class PlaybackSettings : PlayerSettingsGroup
{
private const int padding = 10;

View File

@ -13,7 +13,7 @@ using OpenTK.Graphics;
namespace osu.Game.Screens.Play.PlayerSettings
{
public abstract class PlayerGroup : Container
public abstract class PlayerSettingsGroup : Container
{
/// <summary>
/// The title to be displayed in the header of this group.
@ -33,7 +33,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
private Color4 buttonActiveColour;
protected PlayerGroup()
protected PlayerSettingsGroup()
{
AutoSizeAxes = Axes.Y;
Width = container_width;

View File

@ -11,7 +11,7 @@ using osu.Game.Graphics.Sprites;
namespace osu.Game.Screens.Play.PlayerSettings
{
public class VisualSettings : PlayerGroup
public class VisualSettings : PlayerSettingsGroup
{
protected override string Title => "Visual settings";

View File

@ -756,7 +756,7 @@
<Compile Include="Screens\Play\PlayerSettings\DiscussionSettings.cs" />
<Compile Include="Screens\Play\PlayerSettings\PlaybackSettings.cs" />
<Compile Include="Screens\Play\PlayerSettings\PlayerCheckbox.cs" />
<Compile Include="Screens\Play\PlayerSettings\PlayerGroup.cs" />
<Compile Include="Screens\Play\PlayerSettings\PlayerSettingsGroup.cs" />
<Compile Include="Screens\Play\PlayerSettings\PlayerSliderBar.cs" />
<Compile Include="Screens\Play\SkipButton.cs" />
<Compile Include="Screens\Play\SongProgress.cs" />