Files
BookRPG/Library/PackageCache/com.unity.test-framework@76560ee600cb/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs
2026-07-16 21:49:59 +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()
{
}
}
}