18 lines
233 B
C#
18 lines
233 B
C#
//
|
|
// Copyright (c) Antmicro
|
|
//
|
|
// Full license details are defined in the 'LICENSE' file.
|
|
//
|
|
|
|
namespace TermSharp
|
|
{
|
|
public enum SelectionDirection
|
|
{
|
|
NE = 2,
|
|
SE = 0,
|
|
SW = 1,
|
|
NW = 3
|
|
}
|
|
}
|
|
|