Add saving + reloading (to/from drawings_results.txt) functionality.

This commit is contained in:
smoogipooo
2017-03-02 12:02:50 +09:00
parent 35d246b59d
commit 1a4f0a92a5
4 changed files with 106 additions and 14 deletions

View File

@ -147,6 +147,14 @@ namespace osu.Game.Screens.Tournament
bottomTeamsCount = 0;
}
public string ToStringRepresentation()
{
StringBuilder sb = new StringBuilder();
foreach (GroupTeam gt in allTeams)
sb.AppendLine(gt.Team.FullName);
return sb.ToString();
}
class GroupTeam : Container
{
public Team Team;