mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Capitalised protected members, added readonly modifiers.
This commit is contained in:
@ -13,10 +13,10 @@ namespace osu.Game.Rulesets.Osu.OsuDifficulty.Utils
|
||||
/// </summary>
|
||||
public class History<T> : IEnumerable<T>
|
||||
{
|
||||
public int Count { get; private set; } = 0;
|
||||
public int Count { get; private set; }
|
||||
|
||||
private T[] array;
|
||||
private int size;
|
||||
private readonly T[] array;
|
||||
private readonly int size;
|
||||
private int marker; // Marks the position of the most recently added item.
|
||||
|
||||
public History(int size)
|
||||
|
Reference in New Issue
Block a user