2020-06-16 16:49:28 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-19 19:31:52 +08:00
|
|
|
using JetBrains.Annotations;
|
2020-06-16 16:49:28 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Ranking.Statistics
|
|
|
|
{
|
2020-06-19 19:53:43 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A row of statistics to be displayed in the results screen.
|
|
|
|
/// </summary>
|
2020-06-16 16:49:28 +08:00
|
|
|
public class StatisticRow
|
|
|
|
{
|
2020-06-19 19:31:52 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The columns of this <see cref="StatisticRow"/>.
|
|
|
|
/// </summary>
|
2020-06-19 19:53:43 +08:00
|
|
|
[ItemNotNull]
|
2020-06-19 19:31:52 +08:00
|
|
|
public StatisticItem[] Columns;
|
2020-06-16 16:49:28 +08:00
|
|
|
}
|
|
|
|
}
|