Rename NewsPost to APINewsPost

This commit is contained in:
Andrei Zavatski
2020-07-06 07:28:44 +03:00
parent 7550097eb6
commit fdb7727e95
3 changed files with 5 additions and 5 deletions

View File

@ -23,12 +23,12 @@ namespace osu.Game.Overlays.News
[Resolved]
private OverlayColourProvider colourProvider { get; set; }
private readonly NewsPost post;
private readonly APINewsPost post;
private Box background;
private TextFlowContainer main;
public NewsCard(NewsPost post)
public NewsCard(APINewsPost post)
{
this.post = post;
}