namespace Qrakhen.TilingFrames.Models;
///
/// Used to declare where a new shall be placed when tiling.
///
public enum TilingDirection
{
///
/// Right side of the target host, the new child becomes beta.
///
Right = 0,
///
/// The bottom of the target host, the new child becomes beta.
///
Bottom = 1,
///
/// Left side of the target host, the new child becomes alpha and the target host moves to beta.
///
Left = 2,
///
/// The top of the target host, the new child becomes alpha and the target host moves to beta.
///
Top = 3
}