2024-02-01 23:19:09 +08:00
|
|
|
// 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.
|
|
|
|
|
2024-09-03 12:59:42 +08:00
|
|
|
using osu.Game.Configuration;
|
2024-09-04 15:37:52 +08:00
|
|
|
using osu.Game.Rulesets;
|
2024-02-01 23:19:09 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.PlayerSettings
|
|
|
|
{
|
2024-09-03 12:59:42 +08:00
|
|
|
public partial class AnalysisSettings : PlayerSettingsGroup
|
2024-02-01 23:19:09 +08:00
|
|
|
{
|
2024-09-04 15:37:52 +08:00
|
|
|
protected Ruleset Ruleset;
|
|
|
|
|
|
|
|
public AnalysisSettings(Ruleset ruleset)
|
2024-02-01 23:19:09 +08:00
|
|
|
: base("Analysis Settings")
|
|
|
|
{
|
2024-09-04 15:37:52 +08:00
|
|
|
Ruleset = ruleset;
|
|
|
|
|
2024-09-03 12:59:42 +08:00
|
|
|
AddRange(this.CreateSettingsControls());
|
2024-02-01 23:19:09 +08:00
|
|
|
}
|
|
|
|
}
|
2024-02-23 08:01:52 +08:00
|
|
|
}
|