1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 09:47:22 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestCaseSliderPlacementBlueprint.cs

20 lines
780 B
C#
Raw Normal View History

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
2018-11-07 16:08:56 +09:00
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Osu.Tests
{
2018-11-06 18:06:13 +09:00
public class TestCaseSliderPlacementBlueprint : PlacementBlueprintTestCase
{
protected override DrawableHitObject CreateHitObject(HitObject hitObject) => new DrawableSlider((Slider)hitObject);
2018-11-07 15:04:48 +09:00
protected override PlacementBlueprint CreateBlueprint() => new SliderPlacementBlueprint();
}
}