Rasagar/Library/PackageCache/com.unity.test-framework/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
2024-08-26 23:07:20 +03:00

11 lines
195 B
C#

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