1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 23:27:25 +08:00
osu-lazer/osu.Game/Overlays/NewsOverlay.cs

24 lines
559 B
C#
Raw Normal View History

2019-08-10 18:22:45 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
namespace osu.Game.Overlays
{
public class NewsOverlay : FullscreenOverlay
{
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2019-08-10 18:26:54 +08:00
Colour = colours.PurpleDarkAlternative
2019-08-10 18:22:45 +08:00
}
};
}
}
}