Initial pass to make work with real API

This commit is contained in:
Dean Herbert
2019-05-13 16:24:32 +09:00
parent 31b72f168d
commit 219c590b8a
10 changed files with 44 additions and 33 deletions

View File

@ -6,6 +6,7 @@ using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Online.API.Requests.Responses;
using System;
using System.Collections.Generic;
using osuTK.Graphics;
namespace osu.Game.Overlays.Changelog
@ -26,7 +27,7 @@ namespace osu.Game.Overlays.Changelog
Padding = new MarginPadding { Bottom = 100 };
}
public void ShowListing(APIChangelogBuild[] changelog)
public void ShowListing(List<APIChangelogBuild> changelog)
{
DateTime currentDate = new DateTime();
Clear();