1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:18:22 +08:00

Expose CursorContainer.

This commit is contained in:
Dean Herbert 2016-10-06 21:09:18 +09:00
parent a23ca25e7d
commit 9b76a0ffb8

View File

@ -25,6 +25,8 @@ namespace osu.Game
private RatioAdjust ratioContainer;
public CursorContainer Cursor;
public override void Load()
{
base.Load();
@ -49,7 +51,7 @@ namespace osu.Game
Children = new Drawable[]
{
Options = new Options(),
new OsuCursorContainer()
Cursor = new OsuCursorContainer()
}
}
});