15 lines
286 B
C#
15 lines
286 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
|
||
|
{
|
||
|
internal class ScreenSettingsMessage : Message
|
||
|
{
|
||
|
public ScreenSettings ScreenSettings;
|
||
|
|
||
|
public ScreenSettingsMessage()
|
||
|
{
|
||
|
type = "ScreenSettings";
|
||
|
}
|
||
|
}
|
||
|
}
|