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.

HelpLink.cs 331B

123456789101112131415161718
  1. namespace Unity.PlasticSCM.Editor.Help
  2. {
  3. internal class HelpLink
  4. {
  5. internal enum LinkType
  6. {
  7. Action,
  8. Help,
  9. Link,
  10. }
  11. internal int Position;
  12. internal int Length;
  13. internal string Link;
  14. internal LinkType Type = LinkType.Action;
  15. }
  16. }