Ducktaped together a FishNet version of the Transport, now I need to edit the LoadBalancer and Server so it connects and actually trades information
15 lines
No EOL
517 B
C#
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);
|
|
|
|
} |