Add NewsOverlay class

This commit is contained in:
Lucas A 2019-08-10 12:22:45 +02:00
parent d55f9404da
commit e3d52d8d71
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
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,
Colour = colours.PurpleLightAlternative
}
};
}
}
}