1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 21:07:33 +08:00

Readonly fixes

This commit is contained in:
WebFreak001 2018-09-16 16:57:43 +02:00
parent c9ea5ce817
commit 2de3b33780

View File

@ -32,13 +32,14 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
private const float npc_movement_start = 1.5f;
private float npcPosition = npc_movement_start;
private bool animatingBlinds;
private Beatmap<OsuHitObject> beatmap;
private readonly Beatmap<OsuHitObject> beatmap;
private Random random;
private ISkinSource skin;
private float targetClamp = 1;
private float targetBreakMultiplier = 0;
private readonly float targetBreakMultiplier = 0;
private float target = 1;
private readonly float easing = 1;