Files
yahtzee/Library/PackageCache/com.unity.test-framework@1.1.14/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
2020-07-21 15:43:56 +09:00

9 lines
171 B
C#

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