fishbait/UnityProject/Assets/FishNet/Runtime/Object/Prediction/Delegates.cs
NIMFER bf403a8f97 Ducktaped together a FishNet version of the Transport
Ducktaped together a FishNet version of the Transport, now I need to edit the LoadBalancer and Server so it connects and actually trades information
2022-08-14 03:55:25 +02:00

15 lines
No EOL
517 B
C#

using FishNet.Connection;
using FishNet.Documenting;
using FishNet.Serializing;
using FishNet.Utility.Constant;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo(UtilityConstants.CODEGEN_ASSEMBLY_NAME)]
namespace FishNet.Object.Prediction.Delegating
{
[APIExclude]
public delegate void ReplicateRpcDelegate(NetworkBehaviour obj, PooledReader reader, NetworkConnection sender);
[APIExclude]
public delegate void ReconcileRpcDelegate(NetworkBehaviour obj, PooledReader reader);
}