SquareDash/Library/PackageCache/com.unity.collab-proxy@2.2.0/Editor/PlasticSCM/Help/HelpFormat.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01: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;
}
}