NetworkBehaviour.Invoker: removed unused DebugString function

This commit is contained in:
vis2k 2018-12-30 17:23:24 +01:00
parent c1f510882d
commit 58528e5179

View File

@ -198,11 +198,6 @@ protected class Invoker
public UNetInvokeType invokeType;
public Type invokeClass;
public CmdDelegate invokeFunction;
public string DebugString()
{
return invokeType + ":" + invokeClass + ":" + invokeFunction.GetMethodName();
}
}
static Dictionary<int, Invoker> s_CmdHandlerDelegates = new Dictionary<int, Invoker>();