mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:32:55 +08:00
Add support for Bindable int in config
This commit is contained in:
parent
e3d323989c
commit
76cfeae7e9
@ -29,6 +29,10 @@ namespace osu.Game.Online.API
|
|||||||
primitiveFormatter.Serialize(ref writer, d.Value, options);
|
primitiveFormatter.Serialize(ref writer, d.Value, options);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Bindable<int> i:
|
||||||
|
primitiveFormatter.Serialize(ref writer, i.Value, options);
|
||||||
|
break;
|
||||||
|
|
||||||
case Bindable<float> f:
|
case Bindable<float> f:
|
||||||
primitiveFormatter.Serialize(ref writer, f.Value, options);
|
primitiveFormatter.Serialize(ref writer, f.Value, options);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user