2023-12-28 06:31:14 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
{
|
2024-03-23 16:41:40 +08:00
|
|
|
public class GetMenuContentRequest : OsuJsonWebRequest<APIMenuContent>
|
2023-12-28 06:31:14 +08:00
|
|
|
{
|
2024-03-23 16:41:40 +08:00
|
|
|
public GetMenuContentRequest()
|
2024-03-25 13:19:12 +08:00
|
|
|
: base(@"https://assets.ppy.sh/menu-content.json")
|
2023-12-28 06:31:14 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|