mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
23 lines
648 B
C#
23 lines
648 B
C#
|
using System;
|
||
|
using UnityEditor.Networking.PlayerConnection;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Networking.PlayerConnection;
|
||
|
using UnityEngine.TestRunner.TestLaunchers;
|
||
|
|
||
|
namespace UnityEditor.TestTools.TestRunner
|
||
|
{
|
||
|
[Serializable]
|
||
|
internal class RemoteTestResultReciever
|
||
|
{
|
||
|
public void RunStarted(MessageEventArgs messageEventArgs)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public void RunFinished(MessageEventArgs messageEventArgs)
|
||
|
{
|
||
|
EditorConnection.instance.Send(PlayerConnectionMessageIds.quitPlayerMessageId, null, messageEventArgs.playerId);
|
||
|
EditorConnection.instance.DisconnectAll();
|
||
|
}
|
||
|
}
|
||
|
}
|