using System;
using System.Runtime.CompilerServices;
namespace BansheeEngine
{
///
/// 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);
}
}
}