2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-11-30 18:19:34 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
|
|
|
public class OsuEditPlayfield : OsuPlayfield
|
|
|
|
{
|
|
|
|
protected override CursorContainer CreateCursor() => null;
|
2017-12-22 21:15:22 +08:00
|
|
|
|
|
|
|
protected override bool ProxyApproachCircles => false;
|
2017-11-30 18:19:34 +08:00
|
|
|
}
|
|
|
|
}
|