Add map pool editing functionality to round editor

This commit is contained in:
Dean Herbert
2019-06-18 16:10:23 +09:00
parent 412778c71a
commit 4baadf6319
4 changed files with 191 additions and 6 deletions

View File

@ -102,7 +102,7 @@ namespace osu.Game.Tournament.Screens.Editors
Width = 0.11f,
Margin = new MarginPadding(10),
Text = "Add player",
Action = () => playerEditor.AddUser()
Action = () => playerEditor.CreateNew()
},
new DangerousSettingsButton
{
@ -167,7 +167,7 @@ namespace osu.Game.Tournament.Screens.Editors
};
}
public void AddUser()
public void CreateNew()
{
var user = new User();
team.Players.Add(user);