CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/Editor/CommandLineParser/ICommandLineOption.cs
Spudnut2000 86e8b2168c Init
2024-10-01 23:23:13 -05:00

9 lines
183 B
C#

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