Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

IGuiHelper.cs 405B

12345678910111213
  1. using System;
  2. using System.Reflection;
  3. namespace UnityEditor.TestTools.TestRunner.GUI
  4. {
  5. internal interface IGuiHelper
  6. {
  7. bool OpenScriptInExternalEditor(string stacktrace);
  8. void OpenScriptInExternalEditor(Type type, MethodInfo method);
  9. IFileOpenInfo GetFileOpenInfo(Type type, MethodInfo method);
  10. string FilePathToAssetsRelativeAndUnified(string filePath);
  11. }
  12. }