mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Fix all remaining cases of incorrect Bindable<string>
defaults
This commit is contained in:
@ -14,8 +14,8 @@ namespace osu.Game.Tournament.Models
|
||||
[Serializable]
|
||||
public class TournamentRound
|
||||
{
|
||||
public readonly Bindable<string> Name = new Bindable<string>();
|
||||
public readonly Bindable<string> Description = new Bindable<string>();
|
||||
public readonly Bindable<string> Name = new Bindable<string>(string.Empty);
|
||||
public readonly Bindable<string> Description = new Bindable<string>(string.Empty);
|
||||
|
||||
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
|
||||
|
||||
|
Reference in New Issue
Block a user