GUILayoutX.cs 622 B

1234567891011121314151617181920
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. namespace BansheeEngine
  4. {
  5. /// <summary>
  6. /// Horizontal layout that will position its child elements left to right.
  7. /// </summary>
  8. public sealed class GUILayoutX : GUILayout
  9. {
  10. /// <summary>
  11. /// Constructs a new empty horizontal layout.
  12. /// </summary>
  13. /// <param name="options">Options that allow you to control how is the layout positioned and sized.</param>
  14. public GUILayoutX(params GUIOption[] options)
  15. {
  16. Internal_CreateInstanceX(this, options);
  17. }
  18. }
  19. }