2019-01-31 17:03:43 +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.
|
|
|
|
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2019-01-31 17:03:43 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
2019-07-03 18:42:16 +08:00
|
|
|
internal class OsuModGrow : OsuModeObjectScaleTween
|
2019-01-31 17:03:43 +08:00
|
|
|
{
|
|
|
|
public override string Name => "Grow";
|
2019-02-14 17:05:23 +08:00
|
|
|
|
2019-01-31 17:03:43 +08:00
|
|
|
public override string Acronym => "GR";
|
2019-02-14 17:05:23 +08:00
|
|
|
|
2019-04-02 18:55:24 +08:00
|
|
|
public override IconUsage Icon => FontAwesome.Solid.ArrowsAltV;
|
2019-02-14 17:05:23 +08:00
|
|
|
|
2019-01-31 17:03:43 +08:00
|
|
|
public override string Description => "Hit them at the right size!";
|
2019-02-14 17:05:23 +08:00
|
|
|
|
2019-07-03 18:42:16 +08:00
|
|
|
protected override float StartScale => 0.5f;
|
2019-01-31 17:03:43 +08:00
|
|
|
}
|
2019-02-14 17:05:23 +08:00
|
|
|
}
|