2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-11-30 18:19:34 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-01-12 17:13:17 +08:00
|
|
|
using osu.Framework.Graphics.Cursor;
|
2017-11-30 18:19:34 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-02-20 13:13:52 +08:00
|
|
|
using OpenTK;
|
2017-11-30 18:19:34 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
|
|
|
public class OsuEditRulesetContainer : OsuRulesetContainer
|
|
|
|
{
|
|
|
|
public OsuEditRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap, bool isForCurrentRuleset)
|
|
|
|
: base(ruleset, beatmap, isForCurrentRuleset)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuEditPlayfield();
|
2018-01-12 17:13:17 +08:00
|
|
|
|
2018-02-21 18:52:36 +08:00
|
|
|
protected override Vector2 PlayfieldArea => Vector2.One;
|
2018-02-20 13:13:52 +08:00
|
|
|
|
2018-01-12 17:13:17 +08:00
|
|
|
protected override CursorContainer CreateCursor() => null;
|
2017-11-30 18:19:34 +08:00
|
|
|
}
|
|
|
|
}
|