17 lines
429 B
C#
17 lines
429 B
C#
namespace Qrakhen.TilingFrames.Models;
|
|
|
|
/// <summary>
|
|
/// Declares the intent of dropping a host into another.
|
|
/// </summary>
|
|
public enum TilingMethod
|
|
{
|
|
/// <summary>
|
|
/// In the case of the host being placed as a split next to the target host.
|
|
/// </summary>
|
|
Split = 0,
|
|
/// <summary>
|
|
/// In case of the new host becoming a tab of the target host, rather than splitting.
|
|
/// </summary>
|
|
Drop = 1
|
|
}
|