mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Make Rankings a ctor variable
This commit is contained in:
@ -7,13 +7,14 @@ using System;
|
||||
using osu.Game.Users;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
using osu.Game.Graphics;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace osu.Game.Overlays.Rankings.Tables
|
||||
{
|
||||
public class CountriesTable : RankingsTable<CountryStatistics>
|
||||
{
|
||||
public CountriesTable(int page = 1)
|
||||
: base(page)
|
||||
public CountriesTable(int page, IReadOnlyList<CountryStatistics> rankings)
|
||||
: base(page, rankings)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user