Rasagar/Library/PackageCache/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpFormat.cs
2024-08-26 23:07:20 +03:00

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;
}
}