No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HelpFormat.cs 291B

12345678910111213141516
  1. namespace Unity.PlasticSCM.Editor.Help
  2. {
  3. internal class HelpFormat
  4. {
  5. internal enum FormatType
  6. {
  7. Title,
  8. Bold,
  9. Underline
  10. }
  11. internal int Position;
  12. internal int Length;
  13. internal FormatType Type;
  14. }
  15. }