mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Remove unnecessary attribute.
This commit is contained in:
@ -23,7 +23,6 @@ using osu.Game.Rulesets.Scoring;
|
|||||||
using osu.Game.Scoring;
|
using osu.Game.Scoring;
|
||||||
using osu.Game.Skinning;
|
using osu.Game.Skinning;
|
||||||
using osu.Game.Users;
|
using osu.Game.Users;
|
||||||
using JetBrains.Annotations;
|
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
using osu.Framework.Extensions.EnumExtensions;
|
using osu.Framework.Extensions.EnumExtensions;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
@ -101,7 +100,6 @@ namespace osu.Game.Rulesets
|
|||||||
/// then the proper behaviour is to return an empty enumerable.
|
/// then the proper behaviour is to return an empty enumerable.
|
||||||
/// <see langword="null"/> mods should not be present in the returned enumerable.
|
/// <see langword="null"/> mods should not be present in the returned enumerable.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[ItemNotNull]
|
|
||||||
public abstract IEnumerable<Mod> GetModsFor(ModType type);
|
public abstract IEnumerable<Mod> GetModsFor(ModType type);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -183,7 +181,7 @@ namespace osu.Game.Rulesets
|
|||||||
|
|
||||||
public ModAutoplay? GetAutoplayMod() => CreateMod<ModAutoplay>();
|
public ModAutoplay? GetAutoplayMod() => CreateMod<ModAutoplay>();
|
||||||
|
|
||||||
public virtual ISkin? CreateLegacySkinProvider([NotNull] ISkin skin, IBeatmap beatmap) => null;
|
public virtual ISkin? CreateLegacySkinProvider(ISkin skin, IBeatmap beatmap) => null;
|
||||||
|
|
||||||
protected Ruleset()
|
protected Ruleset()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user