mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-03 20:04:33 +00:00
20 lines
744 B
C#
20 lines
744 B
C#
using FishNet.Connection;
|
|
using FishNet.Documenting;
|
|
using FishNet.Serializing;
|
|
using FishNet.Transporting;
|
|
using FishNet.Utility;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
[assembly: InternalsVisibleTo(UtilityConstants.CODEGEN_ASSEMBLY_NAME)]
|
|
namespace FishNet.Object.Prediction.Delegating
|
|
{
|
|
[APIExclude]
|
|
public delegate void ReplicateRpcDelegate(PooledReader reader, NetworkConnection sender, Channel channel);
|
|
[APIExclude]
|
|
public delegate void ReconcileRpcDelegate(PooledReader reader, Channel channel);
|
|
|
|
[APIExclude]
|
|
public delegate void ReplicateUserLogicDelegate<T>(T data, ReplicateState state, Channel channel);
|
|
[APIExclude]
|
|
public delegate void ReconcileUserLogicDelegate<T>(T data, Channel channel);
|
|
} |