File size: 704 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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);
}
} |