Add basic display for pp in TestCasePerformancePoints

This commit is contained in:
smoogipoo
2017-11-16 17:35:10 +09:00
parent 95fd323c6b
commit 38fe95d94a
10 changed files with 271 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Rulesets.Catch.Tests
{
public class TestCasePerformancePoints : osu.Game.Tests.Visual.TestCasePerformancePoints
{
public TestCasePerformancePoints()
: base(new CatchRuleset(new RulesetInfo()))
{
}
}
}