remove empty object ctar args

This commit is contained in:
miterosan 2018-08-22 21:39:59 +02:00
parent 6600f7b30e
commit 0a48f8eadd
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ internal class OsuModTransform : Mod, IApplicableToDrawableHitObjects
public override string Description => "Everything rotates. EVERYTHING.";
public override double ScoreMultiplier => 1;
private readonly IReadOnlyList<Type> targetHitObjectTypes = new List<Type>() {
private readonly IReadOnlyList<Type> targetHitObjectTypes = new List<Type> {
typeof(HitCircle),
typeof(Slider),
typeof(Spinner),