Files
FarmingTut/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
Caleb Sandford deQuincey e2595d25ab Initial commit
2025-05-14 21:47:05 +01:00

11 lines
195 B
C#

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