mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
33 lines
876 B
C#
33 lines
876 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Screens.Edit.Compose.Components
|
|
{
|
|
/// <summary>
|
|
/// Provides a border around the playfield.
|
|
/// </summary>
|
|
public class EditorPlayfieldBorder : CompositeDrawable
|
|
{
|
|
public EditorPlayfieldBorder()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
Masking = true;
|
|
BorderColour = Color4.White;
|
|
BorderThickness = 2;
|
|
|
|
InternalChild = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0,
|
|
AlwaysPresent = true
|
|
};
|
|
}
|
|
}
|
|
}
|