1using System; 2 3namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol 4{ 5 [Serializable] 6 internal class PlayerSystemInfoMessage : Message 7 { 8 public PlayerSystemInfo PlayerSystemInfo; 9 public PlayerSystemInfoMessage() 10 { 11 type = "PlayerSystemInfo"; 12 } 13 } 14}