AssemblyCompilationErrorsMessage.cs 322 B

12345678910111213
  1. namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
  2. {
  3. internal class AssemblyCompilationErrorsMessage : Message
  4. {
  5. public string assembly;
  6. public string[] errors;
  7. public AssemblyCompilationErrorsMessage()
  8. {
  9. type = "AssemblyCompilationErrors";
  10. }
  11. }
  12. }