osukey/osu.Game.Tests/Visual/UserInterface/TestSceneSwitchButton.cs
2019-09-24 18:39:11 +09:00

21 lines
541 B
C#

// 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.Graphics;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Tests.Visual.UserInterface
{
public class TestSceneSwitchButton : OsuTestScene
{
public TestSceneSwitchButton()
{
Child = new SwitchButton
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
}
}
}