1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 03:59:55 +08:00
Files
osu-lazer/osu.Game.Rulesets.Catch/UI/CatchCursorContainer.cs
T
2019-11-03 15:34:08 +01:00

15 lines
320 B
C#

using osu.Framework.Graphics;
using osu.Game.Rulesets.UI;
namespace osu.Game.Rulesets.Catch.UI {
class CatchCursorContainer : GameplayCursorContainer
{
protected override Drawable CreateCursor() => new InvisibleCursor();
private class InvisibleCursor : Drawable
{
}
}
}