From c16ef5eac33b6b5c175d32a3f1fee4e99b77da41 Mon Sep 17 00:00:00 2001 From: cdwcgt Date: Sun, 10 Dec 2023 20:55:05 +0900 Subject: [PATCH] cleanup --- osu.Game.Rulesets.Osu/Skinning/AimErrorMeter.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/osu.Game.Rulesets.Osu/Skinning/AimErrorMeter.cs b/osu.Game.Rulesets.Osu/Skinning/AimErrorMeter.cs index 47a60b72e4..e64d8565ed 100644 --- a/osu.Game.Rulesets.Osu/Skinning/AimErrorMeter.cs +++ b/osu.Game.Rulesets.Osu/Skinning/AimErrorMeter.cs @@ -49,13 +49,11 @@ namespace osu.Game.Rulesets.Osu.Skinning public Bindable AverageStyle { get; } = new Bindable(HitPositionStyle.Plus); private Container averagePositionContainer = null!; - private Vector2 averagePosition = Vector2.Zero; + private Vector2 averagePosition; private readonly DrawablePool hitPositionPool = new DrawablePool(20); private Container hitPositionsContainer = null!; - private const float arrow_width = 3f; - private float objectRadius; [Resolved]