Rename the mod class to transform.

This commit is contained in:
miterosan 2018-08-22 21:19:28 +02:00
parent 173d12c1ec
commit 5c5191b9c3
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,7 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System; using System;
using System.Linq;
using System.Collections.Generic; using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions; using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics; using osu.Framework.Graphics;
@ -10,10 +11,13 @@ using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Osu.Objects;
using OpenTK; using OpenTK;
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.UI;
using osu.Game.Rulesets.Osu.Objects.Drawables;
namespace osu.Game.Rulesets.Osu.Mods namespace osu.Game.Rulesets.Osu.Mods
{ {
internal class OsuModArrange : Mod, IApplicableToDrawableHitObjects internal class OsuModTransform : Mod, IApplicableToDrawableHitObjects
{ {
public override string Name => "Transform"; public override string Name => "Transform";
public override string ShortenedName => "TR"; public override string ShortenedName => "TR";

View File

@ -119,7 +119,7 @@ namespace osu.Game.Rulesets.Osu
}; };
case ModType.Fun: case ModType.Fun:
return new Mod[] { return new Mod[] {
new OsuModArrange(), new OsuModTransform(),
}; };
default: default:
return new Mod[] { }; return new Mod[] { };