2019-05-13 16:14:52 +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.
|
2018-07-20 01:07:24 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-07-20 01:07:24 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-07-20 19:51:31 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-07-21 04:11:51 +08:00
|
|
|
|
using System;
|
2018-07-20 01:07:24 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Changelog
|
|
|
|
|
{
|
2018-07-22 11:28:43 +08:00
|
|
|
|
public class ChangelogContent : FillFlowContainer
|
2018-07-20 01:07:24 +08:00
|
|
|
|
{
|
2019-05-17 16:47:28 +08:00
|
|
|
|
public Action<APIChangelogBuild> BuildSelected;
|
2018-07-23 02:14:28 +08:00
|
|
|
|
|
2019-05-17 16:15:51 +08:00
|
|
|
|
public void SelectBuild(APIChangelogBuild build) => BuildSelected?.Invoke(build);
|
|
|
|
|
|
2018-07-20 01:07:24 +08:00
|
|
|
|
public ChangelogContent()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2018-07-20 03:49:13 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2018-07-20 01:07:24 +08:00
|
|
|
|
Direction = FillDirection.Vertical;
|
2018-07-22 11:28:43 +08:00
|
|
|
|
}
|
2018-07-20 01:07:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|