mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 07:27:25 +08:00
22 lines
898 B
C#
22 lines
898 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.Framework.Graphics.Sprites;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
{
|
|
public class OsuModAutopilot : Mod
|
|
{
|
|
public override string Name => "Autopilot";
|
|
public override string Acronym => "AP";
|
|
public override IconUsage Icon => OsuIcon.ModAutopilot;
|
|
public override ModType Type => ModType.Automation;
|
|
public override string Description => @"Automatic cursor movement - just follow the rhythm.";
|
|
public override double ScoreMultiplier => 1;
|
|
public override Type[] IncompatibleMods => new[] { typeof(OsuModSpunOut), typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModNoFail), typeof(ModAutoplay) };
|
|
}
|
|
}
|