1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 01:33:22 +08:00
osu-lazer/osu.Game/Screens/Play/PlayerSettings/AnalysisSettings.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
563 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Configuration;
2024-09-04 15:37:52 +08:00
using osu.Game.Rulesets;
namespace osu.Game.Screens.Play.PlayerSettings
{
public partial class AnalysisSettings : PlayerSettingsGroup
{
2024-09-04 15:37:52 +08:00
protected Ruleset Ruleset;
public AnalysisSettings(Ruleset ruleset)
: base("Analysis Settings")
{
2024-09-04 15:37:52 +08:00
Ruleset = ruleset;
AddRange(this.CreateSettingsControls());
}
}
2024-02-23 08:01:52 +08:00
}