mirror of
https://github.com/ppy/osu.git
synced 2024-11-18 06:52:55 +08:00
22 lines
517 B
C#
22 lines
517 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 NUnit.Framework;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
[TestFixture]
|
|
public class TestCaseChangelog : OsuTestCase
|
|
{
|
|
private ChangelogOverlay changelog;
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Add(changelog = new ChangelogOverlay());
|
|
}
|
|
}
|
|
}
|