2020-03-03 22:01:58 +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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-03-03 22:01:58 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Changelog
|
|
|
|
|
{
|
2020-03-05 04:08:58 +08:00
|
|
|
|
public partial class ChangelogUpdateStreamControl : OverlayStreamControl<APIUpdateStream>
|
2020-03-03 22:01:58 +08:00
|
|
|
|
{
|
2020-12-28 23:35:33 +08:00
|
|
|
|
public ChangelogUpdateStreamControl()
|
2020-12-26 02:49:41 +08:00
|
|
|
|
{
|
2020-12-28 23:35:33 +08:00
|
|
|
|
SelectFirstTabByDefault = false;
|
2020-12-26 02:49:41 +08:00
|
|
|
|
}
|
2020-12-28 23:35:33 +08:00
|
|
|
|
|
|
|
|
|
protected override OverlayStreamItem<APIUpdateStream> CreateStreamItem(APIUpdateStream value) => new ChangelogUpdateStreamItem(value);
|
2020-03-03 22:01:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|