1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 06:38:27 +08:00

27 lines
752 B
C#
Raw Permalink Normal View History

2019-08-30 15:10:11 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-06-22 18:14:29 +02:00
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Game.Rulesets.Catch.UI;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-06-22 18:14:29 +02:00
namespace osu.Game.Rulesets.Catch.Tests
{
[TestFixture]
public class TestSceneCatcher : CatchSkinnableTestScene
2019-06-22 18:14:29 +02:00
{
[BackgroundDependencyLoader]
private void load()
{
SetContents(() => new Catcher(new Container())
2019-06-22 18:14:29 +02:00
{
RelativePositionAxes = Axes.None,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-06-22 18:14:29 +02:00
});
}
}
}