Handle proxied approach layer better and add slider's approach circle (previously missing).

This commit is contained in:
Dean Herbert
2017-02-14 10:22:28 +09:00
parent 9a5ac64332
commit fc192906ea
5 changed files with 26 additions and 5 deletions

View File

@ -0,0 +1,17 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using osu.Framework.Graphics;
namespace osu.Game.Modes.Objects.Drawables
{
public interface IDrawableHitObjectWithProxiedApproach
{
Drawable ProxiedLayer { get; }
}
}