mirror of
https://github.com/osukey/osukey.git
synced 2025-05-22 14:07:38 +09:00
24 lines
560 B
C#
24 lines
560 B
C#
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
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|