mirror of
https://github.com/osukey/osukey.git
synced 2025-07-22 19:00:05 +09:00
General tidy-ups.
This commit is contained in:
@ -9,7 +9,7 @@ using osu.Game.Graphics.UserInterface;
|
|||||||
|
|
||||||
namespace osu.Game.Overlays.Options.Sections.Audio
|
namespace osu.Game.Overlays.Options.Sections.Audio
|
||||||
{
|
{
|
||||||
public class OffsetAdjustmentOptions : OptionsSubsection
|
public class OffsetOptions : OptionsSubsection
|
||||||
{
|
{
|
||||||
protected override string Header => "Offset Adjustment";
|
protected override string Header => "Offset Adjustment";
|
||||||
|
|
@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Options.Sections
|
|||||||
{
|
{
|
||||||
new AudioDevicesOptions { Alpha = RuntimeInfo.IsWindows ? 1 : 0 },
|
new AudioDevicesOptions { Alpha = RuntimeInfo.IsWindows ? 1 : 0 },
|
||||||
new VolumeOptions(),
|
new VolumeOptions(),
|
||||||
new OffsetAdjustmentOptions(),
|
new OffsetOptions(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ using osu.Game.Graphics.UserInterface;
|
|||||||
|
|
||||||
namespace osu.Game.Overlays.Options.Sections.Gameplay
|
namespace osu.Game.Overlays.Options.Sections.Gameplay
|
||||||
{
|
{
|
||||||
public class GeneralGameplayOptions : OptionsSubsection
|
public class GeneralOptions : OptionsSubsection
|
||||||
{
|
{
|
||||||
protected override string Header => "General";
|
protected override string Header => "General";
|
||||||
|
|
@ -8,7 +8,7 @@ using osu.Game.Configuration;
|
|||||||
|
|
||||||
namespace osu.Game.Overlays.Options.Sections.Gameplay
|
namespace osu.Game.Overlays.Options.Sections.Gameplay
|
||||||
{
|
{
|
||||||
public class SongSelectGameplayOptions : OptionsSubsection
|
public class SongSelectOptions : OptionsSubsection
|
||||||
{
|
{
|
||||||
protected override string Header => "Song Select";
|
protected override string Header => "Song Select";
|
||||||
|
|
@ -14,10 +14,10 @@ namespace osu.Game.Overlays.Options.Sections
|
|||||||
|
|
||||||
public GameplaySection()
|
public GameplaySection()
|
||||||
{
|
{
|
||||||
Children = new Drawable[]
|
base.Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new GeneralGameplayOptions(),
|
new Gameplay.GeneralOptions(),
|
||||||
new SongSelectGameplayOptions(),
|
new SongSelectOptions(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Options.Sections.Online
|
|||||||
{
|
{
|
||||||
private OptionTextBox chatIgnoreList;
|
private OptionTextBox chatIgnoreList;
|
||||||
private OptionTextBox chatHighlightWords;
|
private OptionTextBox chatHighlightWords;
|
||||||
protected override string Header => "In-game Chat";
|
protected override string Header => "Chat";
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(OsuConfigManager config)
|
private void load(OsuConfigManager config)
|
||||||
|
@ -8,7 +8,7 @@ using osu.Game.Graphics.UserInterface;
|
|||||||
|
|
||||||
namespace osu.Game.Overlays.Options.Sections.Online
|
namespace osu.Game.Overlays.Options.Sections.Online
|
||||||
{
|
{
|
||||||
public class OnlineIntegrationOptions : OptionsSubsection
|
public class IntegrationOptions : OptionsSubsection
|
||||||
{
|
{
|
||||||
protected override string Header => "Integration";
|
protected override string Header => "Integration";
|
||||||
|
|
@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Options.Sections
|
|||||||
new InGameChatOptions(),
|
new InGameChatOptions(),
|
||||||
new PrivacyOptions(),
|
new PrivacyOptions(),
|
||||||
new NotificationsOptions(),
|
new NotificationsOptions(),
|
||||||
new OnlineIntegrationOptions(),
|
new IntegrationOptions(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -210,18 +210,18 @@
|
|||||||
<Compile Include="Overlays\Options\Sections\Graphics\MainMenuOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Graphics\MainMenuOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Graphics\SongSelectGraphicsOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Graphics\SongSelectGraphicsOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\GameplaySection.cs" />
|
<Compile Include="Overlays\Options\Sections\GameplaySection.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Gameplay\GeneralGameplayOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Gameplay\GeneralOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Gameplay\SongSelectGameplayOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Gameplay\SongSelectOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\AudioSection.cs" />
|
<Compile Include="Overlays\Options\Sections\AudioSection.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Audio\AudioDevicesOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Audio\AudioDevicesOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Audio\VolumeOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Audio\VolumeOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Audio\OffsetAdjustmentOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Audio\OffsetOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\InputSection.cs" />
|
<Compile Include="Overlays\Options\Sections\InputSection.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Input\MouseOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Input\MouseOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Input\KeyboardOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Input\KeyboardOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Input\OtherInputOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Input\OtherInputOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\OnlineSection.cs" />
|
<Compile Include="Overlays\Options\Sections\OnlineSection.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Online\OnlineIntegrationOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Online\IntegrationOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\Online\InGameChatOptions.cs" />
|
<Compile Include="Overlays\Options\Sections\Online\InGameChatOptions.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\EditorSection.cs" />
|
<Compile Include="Overlays\Options\Sections\EditorSection.cs" />
|
||||||
<Compile Include="Overlays\Options\Sections\SkinSection.cs" />
|
<Compile Include="Overlays\Options\Sections\SkinSection.cs" />
|
||||||
|
Reference in New Issue
Block a user