2021-08-22 22:40:17 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-08-22 22:40:17 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Rulesets;
|
2022-08-11 01:53:20 +08:00
|
|
|
using osu.Game.Localisation;
|
2021-08-22 22:40:17 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Setup
|
|
|
|
{
|
|
|
|
public abstract class RulesetSetupSection : SetupSection
|
|
|
|
{
|
2022-08-15 23:14:16 +08:00
|
|
|
public sealed override LocalisableString Title => EditorSetupStrings.RulesetHeader(rulesetInfo.Name);
|
2021-08-22 22:40:17 +08:00
|
|
|
|
|
|
|
private readonly RulesetInfo rulesetInfo;
|
|
|
|
|
|
|
|
protected RulesetSetupSection(RulesetInfo rulesetInfo)
|
|
|
|
{
|
|
|
|
this.rulesetInfo = rulesetInfo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|