2019-01-31 10:51:40 +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.
|
|
|
|
|
2023-11-03 05:27:16 +08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2019-01-31 10:51:40 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
2023-10-30 20:24:01 +08:00
|
|
|
public class OsuModTouchDevice : ModTouchDevice
|
2019-01-31 10:51:40 +08:00
|
|
|
{
|
2023-11-03 05:27:16 +08:00
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray();
|
2024-01-31 21:59:35 +08:00
|
|
|
public override bool Ranked => UsesDefaultConfiguration;
|
2019-01-31 10:51:40 +08:00
|
|
|
}
|
|
|
|
}
|