GUILayoutX.cs 852 B

12345678910111213141516171819202122
  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. /// <summary>
  8. /// Horizontal layout that will position its child elements left to right.
  9. /// </summary>
  10. public sealed class GUILayoutX : GUILayout
  11. {
  12. /// <summary>
  13. /// Constructs a new empty horizontal layout.
  14. /// </summary>
  15. /// <param name="options">Options that allow you to control how is the layout positioned and sized.</param>
  16. public GUILayoutX(params GUIOption[] options)
  17. {
  18. Internal_CreateInstanceX(this, options);
  19. }
  20. }
  21. }