1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:32:55 +08:00

Fix dynamic compilation failing

This commit is contained in:
Dean Herbert 2019-01-22 10:56:04 +09:00
parent f79ce6a7f1
commit 147a9c2440

View File

@ -30,13 +30,18 @@ namespace osu.Game.Rulesets.Osu.Tests
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(Slider),
typeof(SliderCircle),
typeof(SliderBall),
typeof(SliderBody),
typeof(SliderTick),
typeof(SliderTailCircle),
typeof(DrawableSlider),
typeof(SnakingSliderBody),
typeof(DrawableSliderTick),
typeof(DrawableRepeatPoint),
typeof(DrawableOsuHitObject)
typeof(DrawableOsuHitObject),
typeof(DrawableSliderHead),
typeof(DrawableSliderTail)
};
[SetUp]