2021-04-05 10:41:40 +08:00
|
|
|
// 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.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Game.Tests.Visual;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Pippidon.Tests
|
|
|
|
{
|
|
|
|
public class TestSceneOsuGame : OsuTestScene
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 08:06:39 +08:00
|
|
|
private void load()
|
2021-04-05 10:41:40 +08:00
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Black,
|
|
|
|
},
|
|
|
|
};
|
2021-09-13 17:32:48 +08:00
|
|
|
|
|
|
|
AddGame(new OsuGame());
|
2021-04-05 10:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|