1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +08:00

16 lines
432 B
C#
Raw Normal View History

2019-03-04 13:24:19 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Game.Tests.Visual;
2019-06-18 14:51:48 +09:00
using osu.Game.Tournament.Models;
namespace osu.Game.Tournament.Tests
{
2019-06-18 15:20:28 +09:00
public abstract class LadderTestScene : OsuTestScene
{
[Resolved]
2018-11-06 18:32:59 +09:00
protected LadderInfo Ladder { get; private set; }
}
}