暫無描述
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.

ICommandLineOption.cs 195B

12345678910
  1. using System;
  2. namespace UnityEditor.TestRunner.CommandLineParser
  3. {
  4. internal interface ICommandLineOption
  5. {
  6. string ArgName { get; }
  7. void ApplyValue(string value);
  8. }
  9. }