// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; namespace FlaxEditor.CustomEditors.Elements { /// /// The spacer element. /// /// public class SpaceElement : LayoutElementsContainer { /// /// The spacer. /// public readonly Spacer Spacer = new Spacer(0, 0); /// /// Initializes the element. /// /// The height. public void Init(float height) { Spacer.Height = height; } /// public override ContainerControl ContainerControl => Spacer; } }