mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 18:07:27 +09:00
Make user bindables readonly
This commit is contained in:
parent
756d847ad8
commit
2f5b27e97c
@ -26,9 +26,9 @@ namespace osu.Game.Users
|
|||||||
[JsonProperty(@"country")]
|
[JsonProperty(@"country")]
|
||||||
public Country Country;
|
public Country Country;
|
||||||
|
|
||||||
public Bindable<UserStatus> Status = new Bindable<UserStatus>();
|
public readonly Bindable<UserStatus> Status = new Bindable<UserStatus>();
|
||||||
|
|
||||||
public IBindable<UserActivity> Activity = new Bindable<UserActivity>();
|
public readonly Bindable<UserActivity> Activity = new Bindable<UserActivity>();
|
||||||
|
|
||||||
//public Team Team;
|
//public Team Team;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user