2018-05-22 21:41:10 +08:00
|
|
|
|
// 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;
|
2018-05-22 21:29:52 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-05-22 21:29:52 +08:00
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|