1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:07:25 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseDrawings.cs
2017-02-27 14:19:07 +09:00

24 lines
548 B
C#

using osu.Framework.Screens.Testing;
using osu.Game.Screens.Tournament;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Desktop.VisualTests.Tests
{
class TestCaseDrawings : TestCase
{
public override string Name => @"Drawings";
public override string Description => "Tournament drawings";
public override void Reset()
{
base.Reset();
Add(new Drawings());
}
}
}