GUILayoutX.cs 918 B

12345678910111213141516171819202122232425262728
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. using System.Runtime.CompilerServices;
  5. namespace BansheeEngine
  6. {
  7. /** @addtogroup GUI_Engine
  8. * @{
  9. */
  10. /// <summary>
  11. /// Horizontal layout that will position its child elements left to right.
  12. /// </summary>
  13. public sealed class GUILayoutX : GUILayout
  14. {
  15. /// <summary>
  16. /// Constructs a new empty horizontal layout.
  17. /// </summary>
  18. /// <param name="options">Options that allow you to control how is the layout positioned and sized.</param>
  19. public GUILayoutX(params GUIOption[] options)
  20. {
  21. Internal_CreateInstanceX(this, options);
  22. }
  23. }
  24. /** @} */
  25. }