mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
24 lines
710 B
C#
24 lines
710 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||
|
||
using osu.Framework.Graphics.Cursor;
|
||
using osu.Game.Beatmaps;
|
||
using osu.Game.Rulesets.Osu.UI;
|
||
using osu.Game.Rulesets.UI;
|
||
using osuTK;
|
||
|
||
namespace osu.Game.Rulesets.Osu.Edit
|
||
{
|
||
public class OsuEditRulesetContainer : OsuRulesetContainer
|
||
{
|
||
public OsuEditRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
|
||
: base(ruleset, beatmap)
|
||
{
|
||
}
|
||
|
||
protected override CursorContainer CreateCursor() => null;
|
||
|
||
protected override Playfield CreatePlayfield() => new OsuPlayfield { Size = Vector2.One };
|
||
}
|
||
}
|