mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:07:25 +08:00
25 lines
710 B
C#
25 lines
710 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
internal class TestCaseMedalOverlay : TestCase
|
|
{
|
|
public override string Description => @"medal get!";
|
|
|
|
public TestCaseMedalOverlay()
|
|
{
|
|
Add(new MedalOverlay(new Medal
|
|
{
|
|
Name = @"Animations",
|
|
InternalName = @"all-intro-doubletime",
|
|
Description = @"More complex than you think.",
|
|
}));
|
|
}
|
|
}
|
|
}
|