//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// using System; using System.Runtime.CompilerServices; namespace BansheeEngine { /** @addtogroup GUI_Engine * @{ */ /// /// Horizontal layout that will position its child elements left to right. /// public sealed class GUILayoutX : GUILayout { /// /// Constructs a new empty horizontal layout. /// /// Options that allow you to control how is the layout positioned and sized. public GUILayoutX(params GUIOption[] options) { Internal_CreateInstanceX(this, options); } } /** @} */ }