A game about forced loneliness, made by TACStudios
1using System; 2 3namespace UnityEngine.TestTools 4{ 5 /// <summary> 6 /// Implement this interface if you want to define a set of actions to execute as a post-build step. Cleanup runs right away for a standalone test run, but only after all the tests run within the Editor. 7 /// </summary> 8 public interface IPostBuildCleanup 9 { 10 /// <summary> 11 /// Implement this method to specify actions that should run as a post-build cleanup step. 12 /// </summary> 13 void Cleanup(); 14 } 15}