// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.Utilities
{
///
/// Describes how the layout should be arranged horizontally
///
public enum LayoutHorizontalAlignment
{
Left,
Center,
Right
};
///
/// Describes how the layout should be arranged vertically
///
public enum LayoutVerticalAlignment
{
Top,
Middle,
Bottom
};
}