Files

9 lines
171 B
C#
Raw Normal View History

2019-09-29 19:40:54 -04:00
namespace UnityEditor.TestRunner.CommandLineParser
{
interface ICommandLineOption
{
string ArgName { get; }
void ApplyValue(string value);
}
}