9 lines
179 B
C#
Raw Normal View History

2025-03-11 15:43:09 +08:00
namespace UnityEditor.TestRunner.CommandLineParser
{
interface ICommandLineOption
{
string ArgName { get; }
void ApplyValue(string value);
}
}