mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
def2e5bd17
Temporary solution for now.
16 lines
469 B
C#
16 lines
469 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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;
|
|
|
|
protected override bool ProxyApproachCircles => false;
|
|
}
|
|
}
|