Files
FarmingTut/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs
Caleb Sandford deQuincey e2595d25ab Initial commit
2025-05-14 21:47:05 +01:00

20 lines
398 B
C#

using System;
using UnityEditor.TestTools.TestRunner.Api;
namespace UnityEditor.TestTools.TestRunner
{
internal class PlayerLauncherTestRunSettings : ITestRunSettings
{
public bool buildOnly { set; get; }
public string buildOnlyLocationPath { set; get; }
public void Dispose()
{
}
void ITestRunSettings.Apply()
{
}
}
}