osu/osu.Game.Rulesets.Osu/Mods/OsuModGrow.cs

21 lines
599 B
C#
Raw Normal View History

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