Practice_Unity/Library/PackageCache/com.unity.test-framework@d97b7cd61ded/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
2025-10-15 17:21:20 +09:00

11 lines
195 B
C#

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