osu/osu.Game.Rulesets.Osu/Edit/OsuEditRulesetContainer.cs

29 lines
795 B
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.UI;
2018-11-20 07:51:59 +00:00
using osuTK;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Osu.Edit
{
public class OsuEditRulesetContainer : OsuRulesetContainer
{
2018-05-07 02:38:41 +00:00
public OsuEditRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
: base(ruleset, beatmap)
2018-04-13 09:19:50 +00:00
{
}
2019-03-06 03:34:58 +00:00
protected override Playfield CreatePlayfield() => new OsuPlayfieldNoCursor { Size = Vector2.One };
2019-03-06 03:34:58 +00:00
private class OsuPlayfieldNoCursor : OsuPlayfield
{
2019-03-06 08:36:25 +00:00
public OsuPlayfieldNoCursor()
{
Cursor?.Expire();
}
2019-03-06 03:34:58 +00:00
}
2018-04-13 09:19:50 +00:00
}
}