mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:57:24 +08:00
32 lines
961 B
C#
32 lines
961 B
C#
// 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 System;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.Mods;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
|
{
|
|
public class FreeModSelectScreen : ModSelectScreen
|
|
{
|
|
protected override bool AllowCustomisation => false;
|
|
protected override bool ShowTotalMultiplier => false;
|
|
|
|
public new Func<Mod, bool> IsValidMod
|
|
{
|
|
get => base.IsValidMod;
|
|
set => base.IsValidMod = m => m.UserPlayable && value.Invoke(m);
|
|
}
|
|
|
|
public FreeModSelectScreen()
|
|
: base(OverlayColourScheme.Plum)
|
|
{
|
|
IsValidMod = _ => true;
|
|
}
|
|
|
|
protected override ModColumn CreateModColumn(ModType modType, Key[] toggleKeys = null) => new ModColumn(modType, true, toggleKeys);
|
|
}
|
|
}
|