mirror of
https://github.com/osukey/osukey.git
synced 2025-06-11 22:37:56 +09:00
15 lines
320 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|