diff --git a/osu.Game/Screens/Ranking/Statistics/DrawableSimpleStatisticRow.cs b/osu.Game/Screens/Ranking/Statistics/DrawableSimpleStatisticRow.cs
index a592724bc3..7f69b323d8 100644
--- a/osu.Game/Screens/Ranking/Statistics/DrawableSimpleStatisticRow.cs
+++ b/osu.Game/Screens/Ranking/Statistics/DrawableSimpleStatisticRow.cs
@@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
@@ -28,7 +29,7 @@ namespace osu.Game.Screens.Ranking.Statistics
///
/// The number of columns to layout the into.
/// The s to display in this row.
- public DrawableSimpleStatisticRow(int columnCount, IEnumerable items)
+ public DrawableSimpleStatisticRow(int columnCount, [ItemNotNull] IEnumerable items)
{
if (columnCount < 1)
throw new ArgumentOutOfRangeException(nameof(columnCount));
diff --git a/osu.Game/Screens/Ranking/Statistics/SimpleStatisticRow.cs b/osu.Game/Screens/Ranking/Statistics/SimpleStatisticRow.cs
new file mode 100644
index 0000000000..cd6afeb3a5
--- /dev/null
+++ b/osu.Game/Screens/Ranking/Statistics/SimpleStatisticRow.cs
@@ -0,0 +1,34 @@
+// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence.
+// See the LICENCE file in the repository root for full licence text.
+
+using JetBrains.Annotations;
+using osu.Framework.Graphics;
+using osu.Framework.Graphics.Containers;
+
+namespace osu.Game.Screens.Ranking.Statistics
+{
+ ///
+ /// Contains textual statistic data to display in a .
+ ///
+ public class SimpleStatisticRow : IStatisticRow
+ {
+ ///
+ /// The number of columns to layout the in.
+ ///
+ public int Columns { get; set; }
+
+ ///
+ /// The s that this row should contain.
+ ///
+ [ItemNotNull]
+ public SimpleStatisticItem[] Items { get; set; }
+
+ public Drawable CreateDrawableStatisticRow() => new Container
+ {
+ RelativeSizeAxes = Axes.X,
+ AutoSizeAxes = Axes.Y,
+ Padding = new MarginPadding(20),
+ Child = new DrawableSimpleStatisticRow(Columns, Items)
+ };
+ }
+}