VR4Medical/ICI/Library/PackageCache/com.unity.testtools.codecoverage@205a02cbcb39/Editor/CommandLineParser/ICommandLineOption.cs
2025-07-29 13:45:50 +03:00

9 lines
183 B
C#

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