Files
RPGBook/Library/PackageCache/com.unity.test-framework@dfdbd02f5918/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01:00

11 lines
195 B
C#

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