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-02-24 12:32:35 +08:00
|
|
|
using osu.Game.Replays;
|
2024-02-01 23:19:09 +08:00
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play.PlayerSettings
|
|
|
|
{
|
2024-02-24 12:32:35 +08:00
|
|
|
public abstract partial class AnalysisSettings : PlayerSettingsGroup
|
2024-02-01 23:19:09 +08:00
|
|
|
{
|
2024-02-23 08:01:52 +08:00
|
|
|
protected DrawableRuleset DrawableRuleset;
|
2024-02-01 23:19:09 +08:00
|
|
|
|
|
|
|
public AnalysisSettings(DrawableRuleset drawableRuleset)
|
|
|
|
: base("Analysis Settings")
|
|
|
|
{
|
2024-02-23 08:01:52 +08:00
|
|
|
DrawableRuleset = drawableRuleset;
|
2024-02-01 23:19:09 +08:00
|
|
|
}
|
2024-02-24 12:32:35 +08:00
|
|
|
|
|
|
|
public abstract AnalysisContainer CreateAnalysisContainer(Replay replay);
|
2024-02-01 23:19:09 +08:00
|
|
|
}
|
2024-02-23 08:01:52 +08:00
|
|
|
}
|