osu/osu.Game.Rulesets.Osu/UI/Cursor/OsuCursorSprite.cs
2019-12-09 17:51:44 +08:00

14 lines
394 B
C#

// 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;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Rulesets.Osu.UI.Cursor
{
public class OsuCursorSprite : CompositeDrawable
{
public Drawable ExpandTarget { get; protected set; }
}
}