Add preview gameplay button to bottom editor bar

This commit is contained in:
Bartłomiej Dach
2021-11-11 14:00:09 +01:00
parent 3b7a8f9d58
commit 32b5a736c8
5 changed files with 62 additions and 9 deletions

View File

@ -0,0 +1,13 @@
// 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.Game.Rulesets;
using osu.Game.Rulesets.Osu;
namespace osu.Game.Tests.Visual.Editing
{
public class TestSceneEditorTestGameplay : EditorTestScene
{
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
}
}