Skip to content

2019.1211.1

Compare
Choose a tag to compare
@peppy peppy released this 11 Dec 16:30
c94a8dd

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);