pixelgon/Library/PackageCache/com.unity.test-framework@1.1.3/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
2020-06-05 11:54:36 -07:00

8 lines
171 B
C#

namespace UnityEditor.TestRunner.CommandLineParser
{
interface ICommandLineOption
{
string ArgName { get; }
void ApplyValue(string value);
}
}