Files
RPGBook/Library/PackageCache/com.unity.test-framework@dfdbd02f5918/UnityEditor.TestRunner/UnityTestProtocol/Messages/PlayerSystemInfoMessage.cs
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01: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";
}
}
}