【m】插件上传
This commit is contained in:
44
Packages/com.unity.renderstreaming@3.1.0-exp.9/Runtime/Scripts/ISignalingEventHandler.cs
vendored
Normal file
44
Packages/com.unity.renderstreaming@3.1.0-exp.9/Runtime/Scripts/ISignalingEventHandler.cs
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
using UnityEngine.EventSystems;
|
||||
|
||||
namespace Unity.RenderStreaming
|
||||
{
|
||||
public interface ICreatedConnectionHandler : IEventSystemHandler
|
||||
{
|
||||
void OnCreatedConnection(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IDeletedConnectionHandler : IEventSystemHandler
|
||||
{
|
||||
void OnDeletedConnection(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IConnectHandler : IEventSystemHandler
|
||||
{
|
||||
void OnConnect(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IDisconnectHandler : IEventSystemHandler
|
||||
{
|
||||
void OnDisconnect(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IOfferHandler : IEventSystemHandler
|
||||
{
|
||||
void OnOffer(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IAnswerHandler : IEventSystemHandler
|
||||
{
|
||||
void OnAnswer(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IAddChannelHandler : IEventSystemHandler
|
||||
{
|
||||
void OnAddChannel(SignalingEventData eventData);
|
||||
}
|
||||
|
||||
public interface IAddReceiverHandler : IEventSystemHandler
|
||||
{
|
||||
void OnAddReceiver(SignalingEventData eventData);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user