A game about forced loneliness, made by TACStudios
1using System;
2
3namespace UnityEditor.TestTools
4{
5 /// <summary>
6 /// An interface for a callback modifying the <see cref="BuildPlayerOptions"/> when building a player for running tests in the runtime.
7 /// </summary>
8 public interface ITestPlayerBuildModifier
9 {
10 /// <summary>
11 /// A callback to modify the <see cref="BuildPlayerOptions"/> when building a player for test run. Return the modified version of the provided build options.
12 /// </summary>
13 /// <param name="playerOptions">The unmodified BuildPlayerOptions.</param>
14 /// <returns>The modified BuildPlayerOptions.</returns>
15 BuildPlayerOptions ModifyOptions(BuildPlayerOptions playerOptions);
16 }
17}