mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
add required types to TestCase
This commit is contained in:
@ -15,6 +15,15 @@ namespace osu.Game.Tests.Visual
|
|||||||
{
|
{
|
||||||
private BeatmapManager beatmaps;
|
private BeatmapManager beatmaps;
|
||||||
|
|
||||||
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
||||||
|
{
|
||||||
|
typeof(Score),
|
||||||
|
typeof(Results),
|
||||||
|
typeof(ResultsPage),
|
||||||
|
typeof(ResultsPageScore),
|
||||||
|
typeof(ResultsPageRanking)
|
||||||
|
};
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(BeatmapManager beatmaps)
|
private void load(BeatmapManager beatmaps)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user