1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-23 04:52:54 +08:00
osu-lazer/osu.Game.Rulesets.Catch/UI/CatchCursorContainer.cs

19 lines
470 B
C#
Raw Normal View History

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 02:20:11 +08:00
class CatchCursorContainer : GameplayCursorContainer
{
protected override Drawable CreateCursor() => new InvisibleCursor();
private class InvisibleCursor : Drawable
{
}
}
}