mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Add saving + reloading (to/from drawings_results.txt) functionality.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user