playtest-unity/playtest/Library/PackageCache/com.unity.test-framework@1..../UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs

9 lines
179 B
C#
Raw Normal View History

2023-06-21 13:28:15 -04:00
namespace UnityEditor.TestRunner.CommandLineParser
{
interface ICommandLineOption
{
string ArgName { get; }
void ApplyValue(string value);
}
}