add invisible cursor for ctb

This commit is contained in:
unknown
2019-05-12 20:20:11 +02:00
parent 750e3c4aaf
commit 8e248d5cfa
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,14 @@
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
{
}
}
}