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