Files
BookRPG/Library/PackageCache/com.unity.test-framework@76560ee600cb/UnityEditor.TestRunner/UnityTestProtocol/Messages/PlayerSystemInfoMessage.cs
2026-07-16 21:49:59 +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";
}
}
}