arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.test-framework@038a2b0cacd2/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

11 lines
195 B
C#

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