2019-05-13 03:01:51 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-05-13 02:20:11 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
|
2019-05-13 03:14:27 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
2019-05-13 03:17:06 +08:00
|
|
|
|
public class CatchCursorContainer : GameplayCursorContainer
|
2019-05-13 02:20:11 +08:00
|
|
|
|
{
|
|
|
|
|
protected override Drawable CreateCursor() => new InvisibleCursor();
|
|
|
|
|
|
2019-05-13 03:23:59 +08:00
|
|
|
|
private class InvisibleCursor : Drawable { }
|
2019-05-13 02:20:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|