暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PlayerLauncherTestRunSettings.cs 398B

1234567891011121314151617181920
  1. using System;
  2. using UnityEditor.TestTools.TestRunner.Api;
  3. namespace UnityEditor.TestTools.TestRunner
  4. {
  5. internal class PlayerLauncherTestRunSettings : ITestRunSettings
  6. {
  7. public bool buildOnly { set; get; }
  8. public string buildOnlyLocationPath { set; get; }
  9. public void Dispose()
  10. {
  11. }
  12. void ITestRunSettings.Apply()
  13. {
  14. }
  15. }
  16. }