Files
Bombaleila/Library/PackageCache/com.unity.test-framework@0b7a23ab2e1d/UnityEditor.TestRunner/UnityTestProtocol/Messages/PlayerSystemInfoMessage.cs
2026-03-03 00:39:30 +05:00

15 lines
314 B
C#

using System;
namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
{
[Serializable]
internal class PlayerSystemInfoMessage : Message
{
public PlayerSystemInfo PlayerSystemInfo;
public PlayerSystemInfoMessage()
{
type = "PlayerSystemInfo";
}
}
}