mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
24 lines
664 B
C#
24 lines
664 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using OpenTK;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
public class TestCaseExternalLinkButton : OsuTestCase
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(ExternalLinkButton) };
|
|
|
|
public TestCaseExternalLinkButton()
|
|
{
|
|
Child = new ExternalLinkButton("https://osu.ppy.sh/home")
|
|
{
|
|
Size = new Vector2(50)
|
|
};
|
|
}
|
|
}
|
|
}
|