1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:13:21 +08:00

AppVeyor fix

This commit is contained in:
Thomas Tan 2018-01-29 16:30:46 +08:00
parent c36859ea3a
commit 33c5fdcedb
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,7 @@ namespace osu.Game.Rulesets.Osu.Objects
public double EndTime => StartTime + this.SpanCount() * Curve.Distance / Velocity;
public double Duration => EndTime - StartTime;
public Vector2 StackedPositionAt(double t) => this.PositionAt(t) + this.StackOffset;
public Vector2 StackedPositionAt(double t) => this.PositionAt(t) + StackOffset;
public override Vector2 EndPosition => this.PositionAt(1);
public SliderCurve Curve { get; } = new SliderCurve();

View File

@ -3,7 +3,6 @@
using System;
using System.Linq;
using osu.Game.Rulesets.Objects.Types;
using OpenTK;
using osu.Game.Rulesets.Osu.Objects;