polygone/Library/PackageCache/com.unity.test-framework@1.1.24/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs
2021-08-02 05:44:37 -04:00

15 lines
No EOL
718 B
C#

namespace UnityEditor.TestTools
{
/// <summary>
/// An interface for a callback modifying the <see cref="BuildPlayerOptions"/> when building a player for running tests in the runtime.
/// </summary>
public interface ITestPlayerBuildModifier
{
/// <summary>
/// A callback to modify the <see cref="BuildPlayerOptions"/> when building a player for test run. Return the modified version of the provided build options.
/// </summary>
/// <param name="playerOptions">The unmodified BuildPlayerOptions.</param>
/// <returns>The modified BuildPlayerOptions.</returns>
BuildPlayerOptions ModifyOptions(BuildPlayerOptions playerOptions);
}
}