bea2dce063
test
14 lines
322 B
C#
14 lines
322 B
C#
namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
|
|
{
|
|
internal class AssemblyCompilationErrorsMessage : Message
|
|
{
|
|
public string assembly;
|
|
public string[] errors;
|
|
|
|
public AssemblyCompilationErrorsMessage()
|
|
{
|
|
type = "AssemblyCompilationErrors";
|
|
}
|
|
}
|
|
}
|