GroupsContainer -> GroupContainer.

This commit is contained in:
Dean Herbert
2017-03-03 20:46:07 +09:00
parent bc01935a89
commit 38a9e820e6
3 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ namespace osu.Game.Screens.Tournament
protected override BackgroundScreen CreateBackground() => new BackgroundScreenDefault();
private ScrollingTeamContainer teamsContainer;
private GroupsContainer groupsContainer;
private GroupContainer groupsContainer;
private OsuSpriteText fullTeamNameText;
private List<Team> allTeams = new List<Team>();
@ -103,7 +103,7 @@ namespace osu.Game.Screens.Tournament
Lines = 6
},
// Groups
groupsContainer = new GroupsContainer(drawingsConfig.Get<int>(DrawingsConfig.Groups), drawingsConfig.Get<int>(DrawingsConfig.TeamsPerGroup))
groupsContainer = new GroupContainer(drawingsConfig.Get<int>(DrawingsConfig.Groups), drawingsConfig.Get<int>(DrawingsConfig.TeamsPerGroup))
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,

View File

@ -9,14 +9,14 @@ using OpenTK;
namespace osu.Game.Screens.Tournament
{
public class GroupsContainer : Container
public class GroupContainer : Container
{
private List<Group> groups = new List<Group>();
private int maxTeams;
private int currentGroup;
public GroupsContainer(int numGroups, int teamsPerGroup)
public GroupContainer(int numGroups, int teamsPerGroup)
{
FlowContainer<Group> bottomGroups;
FlowContainer<Group> topGroups;