osu/osu.Game/Screens/Ranking/Statistics/StatisticRow.cs

17 lines
441 B
C#
Raw Normal View History

// 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;
namespace osu.Game.Screens.Ranking.Statistics
{
public class StatisticRow
{
2020-06-19 11:31:52 +00:00
/// <summary>
/// The columns of this <see cref="StatisticRow"/>.
/// </summary>
[ItemCanBeNull]
public StatisticItem[] Columns;
}
}