Files
PrinceOfGlory/Packages/com.firstgeargames.fishnet/Runtime/Object/Delegates.cs
2026-03-03 03:15:46 +08:00

14 lines
551 B
C#

using FishNet.Connection;
using FishNet.Serializing;
using FishNet.Transporting;
using FishNet.Utility.Constant;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo(UtilityConstants.CODEGEN_ASSEMBLY_NAME)]
namespace FishNet.Object.Delegating
{
public delegate void ServerRpcDelegate(PooledReader reader, Channel channel, NetworkConnection sender);
public delegate void ClientRpcDelegate(PooledReader reader, Channel channel);
public delegate bool SyncVarReadDelegate(PooledReader reader, byte index, bool asServer);
}