mirror of
https://github.com/osukey/osukey.git
synced 2025-04-30 19:27:25 +09:00
21 lines
541 B
C#
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,
|
|
};
|
|
}
|
|
}
|
|
}
|