Remove unnecessary IRequireHighFrequencyMousePosition

This commit is contained in:
Dean Herbert 2020-05-20 21:14:20 +09:00
parent e3cec9cf6c
commit 63b5f1a376

View File

@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Input;
using osu.Framework.Input.Events; using osu.Framework.Input.Events;
using osu.Game.Rulesets.Edit; using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Mania.Objects; using osu.Game.Rulesets.Mania.Objects;
@ -11,8 +10,7 @@ using osuTK.Input;
namespace osu.Game.Rulesets.Mania.Edit.Blueprints namespace osu.Game.Rulesets.Mania.Edit.Blueprints
{ {
public abstract class ManiaPlacementBlueprint<T> : PlacementBlueprint, public abstract class ManiaPlacementBlueprint<T> : PlacementBlueprint
IRequireHighFrequencyMousePosition // the playfield could be moving behind us
where T : ManiaHitObject where T : ManiaHitObject
{ {
protected new T HitObject => (T)base.HitObject; protected new T HitObject => (T)base.HitObject;