mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 01:27:46 +08:00
27 lines
829 B
C#
27 lines
829 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Users.Drawables
|
|
{
|
|
public partial class StatusIcon : CircularContainer
|
|
{
|
|
public StatusIcon()
|
|
{
|
|
Size = new Vector2(25);
|
|
BorderThickness = 4;
|
|
BorderColour = Colour4.White; // the colour is being applied through Colour - since it's multiplicative it applies to the border as well
|
|
Masking = true;
|
|
Child = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Colour4.White.Opacity(0)
|
|
};
|
|
}
|
|
}
|
|
}
|