Files
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

9 lines
183 B
C#

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