mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Remove readonly modifier from struct fields
This commit is contained in:
@ -203,9 +203,9 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
|
|
||||||
private struct BarsInfo
|
private struct BarsInfo
|
||||||
{
|
{
|
||||||
private readonly List<float> initialLengths;
|
private List<float> initialLengths;
|
||||||
private readonly List<float> finalLengths;
|
private List<float> finalLengths;
|
||||||
private readonly List<float> instantaneousLengths;
|
private List<float> instantaneousLengths;
|
||||||
|
|
||||||
public bool Any => initialLengths.Any();
|
public bool Any => initialLengths.Any();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user