mirror of
https://github.com/ppy/osu.git
synced 2026-05-30 03:59:55 +08: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
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|