VR4Medical/ICI/Library/PackageCache/com.unity.test-framework@7056e7f856e9/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
2025-07-29 13:45:50 +03:00

11 lines
195 B
C#

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