UnityGame/Library/PackageCache/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpFormat.cs
2024-10-27 10:53:47 +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;
}
}