hds.RPCPacket.incrementRpcCounter C# (CSharp) Method

incrementRpcCounter() private method

private incrementRpcCounter ( int quantity ) : void
quantity int
return void
        private void incrementRpcCounter(int quantity)
        {
            UInt16 rpcCounter = destClient.playerData.getRPCCounter();
            rpcCounter+=(UInt16)quantity;
            destClient.playerData.setRPCCounter(rpcCounter);
        }