Files
simulation_core/lib/termsharp/SelectionMode.cs

18 lines
223 B
C#

//
// Copyright (c) Antmicro
//
// Full license details are defined in the 'LICENSE' file.
//
namespace TermSharp
{
public enum SelectionMode
{
Normal,
Word,
Line,
Block
}
}