1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Add StarRating Property

This commit is contained in:
timiimit 2023-05-14 11:05:47 +02:00
parent 3e8711ed96
commit f1f30b94a6

View File

@ -53,6 +53,9 @@ namespace osu.Game.Online.Rooms
[Key(9)]
public DateTimeOffset? PlayedAt { get; set; }
[Key(10)]
public double StarRating { get; set; }
public MultiplayerPlaylistItem()
{
}
@ -69,6 +72,7 @@ namespace osu.Game.Online.Rooms
Expired = item.Expired;
PlaylistOrder = item.PlaylistOrder ?? 0;
PlayedAt = item.PlayedAt;
// TODO: assign StarRating
}
}
}