1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 18:32:56 +08:00

Add missing required types

This commit is contained in:
Dean Herbert 2019-10-20 23:32:49 +09:00
parent ffec960b77
commit 7dc65ec964

View File

@ -1,6 +1,8 @@
// 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 System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Game.Rulesets.Osu;
@ -11,6 +13,12 @@ namespace osu.Game.Tests.Visual.Editor
[TestFixture]
public class TestSceneTimingScreen : EditorClockTestScene
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ControlPointTable),
typeof(RowAttribute)
};
[BackgroundDependencyLoader]
private void load()
{