1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 11:30:04 +08:00

Add NewsOverlay class

This commit is contained in:
Lucas A
2019-08-10 12:22:45 +02:00
Unverified
parent d55f9404da
commit e3d52d8d71
+23
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
}
};
}
}
}