StellarXipher/Library/PackageCache/com.unity.test-framework@0a21eb82d95c/UnityEditor.TestRunner/UnityTestProtocol/Messages/PlayerSystemInfoMessage.cs
2025-02-06 16:45:46 -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";
}
}
}