1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 11:57:30 +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
646 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.Replays;
using osu.Game.Rulesets.UI;
namespace osu.Game.Screens.Play.PlayerSettings
{
public abstract partial class AnalysisSettings : PlayerSettingsGroup
{
2024-02-23 08:01:52 +08:00
protected DrawableRuleset DrawableRuleset;
public AnalysisSettings(DrawableRuleset drawableRuleset)
: base("Analysis Settings")
{
2024-02-23 08:01:52 +08:00
DrawableRuleset = drawableRuleset;
}
public abstract AnalysisContainer CreateAnalysisContainer(Replay replay);
}
2024-02-23 08:01:52 +08:00
}