mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Basic score submission implementation
This commit is contained in:
@ -64,6 +64,9 @@ namespace osu.Game.Online.Multiplayer
|
||||
|
||||
public class PlaylistItem
|
||||
{
|
||||
[JsonProperty("id")]
|
||||
public int ID { get; set; }
|
||||
|
||||
[JsonProperty("beatmap")]
|
||||
private APIBeatmap beatmap { get; set; }
|
||||
|
||||
@ -73,7 +76,7 @@ namespace osu.Game.Online.Multiplayer
|
||||
public BeatmapInfo Beatmap { get; set; }
|
||||
|
||||
[JsonProperty("beatmap_id")]
|
||||
public int BeatmapID => 847296; //Beatmap.OnlineBeatmapID ?? 0;
|
||||
public int BeatmapID => Beatmap.OnlineBeatmapID ?? 0;
|
||||
|
||||
[JsonProperty("ruleset_id")]
|
||||
public int RulesetID { get; set; }
|
||||
|
Reference in New Issue
Block a user