2020-06-16 08:49:28 +00: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.
|
|
|
|
|
2020-06-19 11:31:52 +00:00
|
|
|
using JetBrains.Annotations;
|
2020-06-16 08:49:28 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Ranking.Statistics
|
|
|
|
{
|
2020-06-19 11:53:43 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A row of statistics to be displayed in the results screen.
|
|
|
|
/// </summary>
|
2020-06-16 08:49:28 +00:00
|
|
|
public class StatisticRow
|
|
|
|
{
|
2020-06-19 11:31:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The columns of this <see cref="StatisticRow"/>.
|
|
|
|
/// </summary>
|
2020-06-19 11:53:43 +00:00
|
|
|
[ItemNotNull]
|
2020-06-19 11:31:52 +00:00
|
|
|
public StatisticItem[] Columns;
|
2020-06-16 08:49:28 +00:00
|
|
|
}
|
|
|
|
}
|