GlobalGameJame/Library/PackageCache/com.unity.test-framework@1.1.9/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
JonatanRek bea2dce063 Initial
test
2020-01-31 16:10:04 +01:00

9 lines
171 B
C#

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