Fix up warnings, convert back to float position.

This commit is contained in:
smoogipooo
2017-03-14 13:11:07 +09:00
parent bbd81dbc47
commit 5a47fd659c
3 changed files with 6 additions and 12 deletions

View File

@ -1,14 +1,12 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Game.Modes.Objects;
using osu.Game.Modes.Objects.Types;
namespace osu.Game.Modes.Catch.Objects
{
public abstract class CatchBaseHit : HitObject, IHasPosition
public abstract class CatchBaseHit : HitObject
{
public Vector2 Position { get; set; }
public float Position { get; set; }
}
}