Practice_Unity/Library/PackageCache/com.unity.test-framework@a6f5be5f149c/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
2025-09-16 17:30:13 +09:00

11 lines
195 B
C#

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