1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestCaseSpinnerPlacementBlueprint.cs

21 lines
785 B
C#
Raw Normal View History

2018-10-29 17:35:46 +08:00
// 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;
using osu.Game.Rulesets.Osu.Edit.Masks.SpinnerMasks;
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 17:06:13 +08:00
public class TestCaseSpinnerPlacementBlueprint : PlacementBlueprintTestCase
2018-10-29 17:35:46 +08:00
{
protected override DrawableHitObject CreateHitObject(HitObject hitObject) => new DrawableSpinner((Spinner)hitObject);
2018-11-07 14:04:48 +08:00
protected override PlacementBlueprint CreateBlueprint() => new SpinnerPlacementBlueprint();
2018-10-29 17:35:46 +08:00
}
}