mirror of
https://github.com/ppy/osu.git
synced 2025-01-10 01:12:56 +08:00
25 lines
843 B
C#
25 lines
843 B
C#
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||
|
|
||
|
using System;
|
||
|
using osu.Framework.Timing;
|
||
|
using osu.Game.Graphics;
|
||
|
|
||
|
namespace osu.Game.Rulesets.Mods
|
||
|
{
|
||
|
public class ModDoubleTime : Mod, IApplicableToClock
|
||
|
{
|
||
|
public override string Name => "Double Time";
|
||
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_doubletime;
|
||
|
public override string Description => "Zoooooooooom";
|
||
|
public override bool Ranked => true;
|
||
|
public override Type[] IncompatibleMods => new[] { typeof(ModHalfTime) };
|
||
|
|
||
|
public override double ScoreMultiplier => 1.12;
|
||
|
|
||
|
public virtual void ApplyToClock(IAdjustableClock clock)
|
||
|
{
|
||
|
clock.Rate = 1.5;
|
||
|
}
|
||
|
}
|
||
|
}
|