Thanks for following along! This is a tagged release (2019.1211.1). For more information check out the osu! changelog page and dev blog.
The value provided in the constructor for Bindable<T>
is now used as both the initial and default value
The following lines of code are now identical.
var bindable1 = new Bindable<int>(10) { Default = 10 };
var bindable2 = new Bindable<int>(10);