16 lines
291 B
C#
16 lines
291 B
C#
|
namespace Unity.PlasticSCM.Editor.Help
|
||
|
{
|
||
|
internal class HelpFormat
|
||
|
{
|
||
|
internal enum FormatType
|
||
|
{
|
||
|
Title,
|
||
|
Bold,
|
||
|
Underline
|
||
|
}
|
||
|
|
||
|
internal int Position;
|
||
|
internal int Length;
|
||
|
internal FormatType Type;
|
||
|
}
|
||
|
}
|